[YogaKit] support tvOS
- add YogaKitTVSample target
This commit is contained in:
19
YogaKit/YogaKitSample/YogaKitTVSample/main.m
Normal file
19
YogaKit/YogaKitSample/YogaKitTVSample/main.m
Normal file
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// main.m
|
||||
// YogaKitTVSample
|
||||
//
|
||||
// Created by lvv on 2020/8/13.
|
||||
// Copyright © 2020 facebook. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "AppDelegate.h"
|
||||
|
||||
int main(int argc, char * argv[]) {
|
||||
NSString * appDelegateClassName;
|
||||
@autoreleasepool {
|
||||
// Setup code that might create autoreleased objects goes here.
|
||||
appDelegateClassName = NSStringFromClass([AppDelegate class]);
|
||||
}
|
||||
return UIApplicationMain(argc, argv, nil, appDelegateClassName);
|
||||
}
|
Reference in New Issue
Block a user