Files
ZipArchive/Example/Classes/SSAppDelegate.m
T
Sam Soffes d3c40f0e95 Happy New Year 🎉
2014-01-01 11:00:26 -08:00

23 lines
489 B
Objective-C

//
// SSAppDelegate.m
// SSZipArchive
//
// Created by Sam Soffes on 9/7/13.
// Copyright (c) 2013-2014 Sam Soffes. All rights reserved.
//
#import "SSAppDelegate.h"
@implementation SSAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Nothing to see here yet.
[self.window makeKeyAndVisible];
return YES;
}
@end