18 lines
277 B
Objective-C
18 lines
277 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// YogaKitTVSample
|
|
//
|
|
// Created by lvv on 2020/8/13.
|
|
// Copyright © 2020 facebook. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
|
|
@end
|
|
|