blob: 6af5af80533d8f48048fb36b45f22d888b2c4195 [file] [log] [blame] [edit]
//
// RACAppDelegate.m
// ReactiveCocoa-iOS-UIKitTestHost
//
// Created by Andrew Mackenzie-Ross on 27/06/13.
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
//
#import "RACAppDelegate.h"
@implementation RACAppDelegate
+ (instancetype)delegate {
return (id)UIApplication.sharedApplication.delegate;
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:UIScreen.mainScreen.bounds];
[self.window makeKeyAndVisible];
return YES;
}
@end