summaryrefslogtreecommitdiff
path: root/tests/projects/objc/macapp/src/AppDelegate.m
diff options
context:
space:
mode:
authorruki <[email protected]>2020-04-05 22:42:54 +0800
committerruki <[email protected]>2020-04-05 22:42:54 +0800
commit6a67eb4ca0b1b8f375b0aa190fb85bca8477b595 (patch)
tree61f75d988896f12096490e6c79d5146c27dfa5be /tests/projects/objc/macapp/src/AppDelegate.m
parent52086e64f363bfefc91688efa09ad20f485bcbea (diff)
update macapp tests
Diffstat (limited to 'tests/projects/objc/macapp/src/AppDelegate.m')
-rw-r--r--tests/projects/objc/macapp/src/AppDelegate.m27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/projects/objc/macapp/src/AppDelegate.m b/tests/projects/objc/macapp/src/AppDelegate.m
new file mode 100644
index 000000000..da967d2ef
--- /dev/null
+++ b/tests/projects/objc/macapp/src/AppDelegate.m
@@ -0,0 +1,27 @@
+//
+// AppDelegate.m
+// test3
+//
+// Created by ruki on 2020/4/4.
+// Copyright © 2020 tboox. All rights reserved.
+//
+
+#import "AppDelegate.h"
+
+@interface AppDelegate ()
+
+@end
+
+@implementation AppDelegate
+
+- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
+ // Insert code here to initialize your application
+}
+
+
+- (void)applicationWillTerminate:(NSNotification *)aNotification {
+ // Insert code here to tear down your application
+}
+
+
+@end