Initial Commit

This commit is contained in:
Donato Fiore
2023-11-30 21:06:53 -05:00
committed by GitHub
commit 7e2c90a560
59 changed files with 14054 additions and 0 deletions

14
TDAppDelegate.m Normal file
View File

@@ -0,0 +1,14 @@
#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