Sha256: db57e51bdf2dfd6a18afcb72677b1c6a41b63401e6fc1f0858a8d227995d0c88

Contents?: true

Size: 833 Bytes

Versions: 8

Compression:

Stored size: 833 Bytes

Contents

//
//  XXPROJECT_TITLEXX
//
//  Copyright (c) XXYEARXX XXORGANIZATION_NAMEXX. All rights reserved.
//

#import "XXCLASS_PREFIXXXAppDelegate.h"
#import "XXCLASS_PREFIXXXRootViewController.h"

@interface  XXCLASS_PREFIXXXAppDelegate ()

@property (nonatomic, strong) XXCLASS_PREFIXXXRootViewController *rootViewController;

@end

@implementation XXCLASS_PREFIXXXAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    self.rootViewController = [[XXCLASS_PREFIXXXRootViewController alloc] init];
    self.window.rootViewController = self.rootViewController;
    
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

@end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
klipp-0.2.2.5 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXAppDelegate.m
klipp-0.2.2.4 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXAppDelegate.m
klipp-0.2.2.3 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXAppDelegate.m
klipp-0.2.2.2 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXAppDelegate.m
klipp-0.2.2.1 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXAppDelegate.m
klipp-0.2.2 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXAppDelegate.m
klipp-0.2.1 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXAppDelegate.m
klipp-0.2.0 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXAppDelegate.m