Restructure project and move to XCTest

This commit is contained in:
Sam Soffes
2013-09-07 08:33:47 -07:00
parent 524ca1abae
commit 364be2ed4f
41 changed files with 772 additions and 480 deletions
+22
View File
@@ -0,0 +1,22 @@
//
// SSAppDelegate.m
// SSZipArchive
//
// Created by Sam Soffes on 9/7/13.
// Copyright (c) 2013 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