summaryrefslogtreecommitdiff
path: root/tests/projects/objc/macapp_with_shared/src/AppDelegate.m
diff options
context:
space:
mode:
authorruki <[email protected]>2020-05-26 00:18:35 +0800
committerruki <[email protected]>2020-05-25 19:51:33 +0800
commit364d1242536594a954841ed2246ca1c447e9d0b2 (patch)
tree9288f6f0b5a5a2200c42621af814b856642ddb03 /tests/projects/objc/macapp_with_shared/src/AppDelegate.m
parent6707844c34b10b2cbb7844838c886e9aa315f415 (diff)
copy dynamic libraries for xcode app
Diffstat (limited to 'tests/projects/objc/macapp_with_shared/src/AppDelegate.m')
-rw-r--r--tests/projects/objc/macapp_with_shared/src/AppDelegate.m29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/projects/objc/macapp_with_shared/src/AppDelegate.m b/tests/projects/objc/macapp_with_shared/src/AppDelegate.m
new file mode 100644
index 000000000..377d53e5c
--- /dev/null
+++ b/tests/projects/objc/macapp_with_shared/src/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"
+#include "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