blob: 58b31e876cb716efbf988cad4a9d3203bc8cb79e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
See LICENSE folder for this sample’s licensing information.
Abstract:
Implementation of our iOS & tvOS application delegate
*/
#import "AAPLAppDelegate.h"
@implementation AAPLAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
return YES;
}
@end
|