diff options
Diffstat (limited to 'tests/projects/objc/macapp_with_framework/src/app/AppDelegate.m')
| -rw-r--r-- | tests/projects/objc/macapp_with_framework/src/app/AppDelegate.m | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/projects/objc/macapp_with_framework/src/app/AppDelegate.m b/tests/projects/objc/macapp_with_framework/src/app/AppDelegate.m new file mode 100644 index 000000000..1f68e1eb8 --- /dev/null +++ b/tests/projects/objc/macapp_with_framework/src/app/AppDelegate.m @@ -0,0 +1,29 @@ +// +// AppDelegate.m +// test3 +// +// Created by ruki on 2020/4/4. +// Copyright © 2020 tboox. All rights reserved. +// + +#import "AppDelegate.h" +#import <test/test.h> + +@interface AppDelegate () + +@end + +@implementation AppDelegate + +- (void)applicationDidFinishLaunching:(NSNotification *)aNotification { + // Insert code here to initialize your application + add(1, 2); +} + + +- (void)applicationWillTerminate:(NSNotification *)aNotification { + // Insert code here to tear down your application +} + + +@end |
