summaryrefslogtreecommitdiff
path: root/tests/projects/objc/macapp_with_framework/src/app/ViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/objc/macapp_with_framework/src/app/ViewController.m')
-rw-r--r--tests/projects/objc/macapp_with_framework/src/app/ViewController.m27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/projects/objc/macapp_with_framework/src/app/ViewController.m b/tests/projects/objc/macapp_with_framework/src/app/ViewController.m
new file mode 100644
index 000000000..bccdf6189
--- /dev/null
+++ b/tests/projects/objc/macapp_with_framework/src/app/ViewController.m
@@ -0,0 +1,27 @@
+//
+// ViewController.m
+// test3
+//
+// Created by ruki on 2020/4/4.
+// Copyright © 2020 tboox. All rights reserved.
+//
+
+#import "ViewController.h"
+
+@implementation ViewController
+
+- (void)viewDidLoad {
+ [super viewDidLoad];
+
+ // Do any additional setup after loading the view.
+}
+
+
+- (void)setRepresentedObject:(id)representedObject {
+ [super setRepresentedObject:representedObject];
+
+ // Update the view, if already loaded.
+}
+
+
+@end