aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests-ios
diff options
context:
space:
mode:
authorGravatar Nikolay Morev <n.morev@corp.mail.ru>2016-02-02 17:47:23 +0300
committerGravatar Nikolay Morev <n.morev@corp.mail.ru>2016-02-05 11:17:26 +0300
commit637e0419f34a9d1cac526067e841773c29e9967d (patch)
treeed84cccac0c99ba9a9026936538c8df9376da070 /tests-ios
parent23b7111cac22b76c1005778553819532db62adac (diff)
Recent SDK requires setting rootViewController
Diffstat (limited to 'tests-ios')
-rw-r--r--tests-ios/AppDelegate.mm1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests-ios/AppDelegate.mm b/tests-ios/AppDelegate.mm
index 5872d3bc..183f24c6 100644
--- a/tests-ios/AppDelegate.mm
+++ b/tests-ios/AppDelegate.mm
@@ -23,6 +23,7 @@
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch.
self.window.backgroundColor = [UIColor whiteColor];
+ self.window.rootViewController = [[UIViewController alloc] init];
[self.window makeKeyAndVisible];
testAll();