Files
TrollDecrypt-tvOS/TDAppDelegate.m
Donato Fiore 7e2c90a560 Initial Commit
2023-11-30 21:06:53 -05:00

15 lines
498 B
Objective-C

#import "TDAppDelegate.h"
#import "TDRootViewController.h"
@implementation TDAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
_window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
_rootViewController = [[UINavigationController alloc] initWithRootViewController:[[TDRootViewController alloc] init]];
_window.rootViewController = _rootViewController;
[_window makeKeyAndVisible];
return YES;
}
@end