We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479d4ae commit 2fb14e0Copy full SHA for 2fb14e0
build_tests/classes/objective_c/MDCBuildTestAppDelegate.m
@@ -16,9 +16,15 @@
16
17
#import "MDCBuildTestAppDelegate.h"
18
19
+#import "MDCBuildTestViewController.h"
20
+
21
@implementation MDCBuildTestAppDelegate
22
-- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
23
+- (BOOL)application:(UIApplication *)application
24
+ didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
25
+ self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
26
+ self.window.rootViewController = [[MDCBuildTestViewController alloc] init];
27
+ [self.window makeKeyAndVisible];
28
return YES;
29
}
30
0 commit comments