summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/plugins/platforms/ios/qtmain.mm20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/plugins/platforms/ios/qtmain.mm b/src/plugins/platforms/ios/qtmain.mm
index 61756edc93..7cc96f54b1 100644
--- a/src/plugins/platforms/ios/qtmain.mm
+++ b/src/plugins/platforms/ios/qtmain.mm
@@ -55,20 +55,16 @@ extern int qt_main(int argc, char *argv[]);
- (BOOL)application:(UIApplication *)application willFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
- // We may have a window already from a NIB or storyboard
- if (!self.window) {
- // If not, we create one ourselves
- self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
- QIOSViewController *controller = [[QIOSViewController alloc] init];
- self.window.rootViewController = controller;
- controller.view = [[UIView alloc] init];
+ self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
+ QIOSViewController *controller = [[QIOSViewController alloc] init];
+ self.window.rootViewController = controller;
+ controller.view = [[UIView alloc] init];
- // Aid debugging during development
- self.window.backgroundColor = [UIColor cyanColor];
- self.window.rootViewController.view.backgroundColor = [UIColor magentaColor];
+ // Aid debugging during development
+ self.window.backgroundColor = [UIColor cyanColor];
+ self.window.rootViewController.view.backgroundColor = [UIColor magentaColor];
- [self.window makeKeyAndVisible];
- }
+ [self.window makeKeyAndVisible];
// We schedule the main-redirection for the next eventloop pass so that we
// can return from this function and let UIApplicationMain finish its job.