aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'example/ios/iOS UI Test/iOS UI Test/main.m')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/main.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/main.m b/example/ios/iOS UI Test/iOS UI Test/main.m
index 479c71e4..d4efdd26 100644
--- a/example/ios/iOS UI Test/iOS UI Test/main.m
+++ b/example/ios/iOS UI Test/iOS UI Test/main.m
@@ -9,10 +9,11 @@
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
+#import "Application.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
+ return UIApplicationMain(argc, argv, NSStringFromClass([Application class]), NSStringFromClass([AppDelegate class]));
}
}