diff options
| author | ruki <[email protected]> | 2020-11-13 23:56:09 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-11-13 23:56:09 +0800 |
| commit | e88fec9971eae101529deb7b2bcd58b2284c5e41 (patch) | |
| tree | cffefaf5a82df858974bf1e53613c10c1a8e975c /tests/projects/objc/macapp_with_framework/src/app/AppDelegate.m | |
| parent | dc9d1b09583397e37f353f2d8bb6fe45bf5dfbed (diff) | |
add macapp with framework
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 |
