13 lines
242 B
Objective-C
13 lines
242 B
Objective-C
#import "AppDelegate.h"
|
|
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
NSLog(@"application:didFinishLaunchingWithOptions:");
|
|
return YES;
|
|
}
|
|
|
|
@end
|