Skip to content

Commit

Permalink
Happy New Year 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
soffes committed Jan 1, 2014
1 parent 1dde258 commit 0459ab3
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 46 deletions.
4 changes: 1 addition & 3 deletions Example/Classes/SSAppDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
// SSKeychain
//
// Created by Sam Soffes on 9/7/13.
// Copyright (c) 2013 Sam Soffes. All rights reserved.
// Copyright (c) 2013-2014 Sam Soffes. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface SSAppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;
Expand Down
33 changes: 2 additions & 31 deletions Example/Classes/SSAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,47 +3,18 @@
// SSKeychain
//
// Created by Sam Soffes on 9/7/13.
// Copyright (c) 2013 Sam Soffes. All rights reserved.
// Copyright (c) 2013-2014 Sam Soffes. All rights reserved.
//

#import "SSAppDelegate.h"

@implementation SSAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application
{
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application
{
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

@end
9 changes: 3 additions & 6 deletions Example/Other Sources/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,13 @@
// SSKeychain
//
// Created by Sam Soffes on 9/7/13.
// Copyright (c) 2013 Sam Soffes. All rights reserved.
// Copyright (c) 2013-2014 Sam Soffes. All rights reserved.
//

#import <UIKit/UIKit.h>

#import "SSAppDelegate.h"

int main(int argc, char * argv[])
{
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([SSAppDelegate class]));
return UIApplicationMain(argc, argv, nil, NSStringFromClass([SSAppDelegate class]));
}
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010-2013 Sam Soffes.
Copyright (c) 2010-2014 Sam Soffes, http://soff.es

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion SSKeychain/SSKeychain.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SSKeychain
//
// Created by Sam Soffes on 5/19/10.
// Copyright (c) 2010-2013 Sam Soffes. All rights reserved.
// Copyright (c) 2010-2014 Sam Soffes. All rights reserved.
//

#import "SSKeychainQuery.h"
Expand Down
2 changes: 1 addition & 1 deletion SSKeychain/SSKeychain.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SSKeychain
//
// Created by Sam Soffes on 5/19/10.
// Copyright (c) 2010-2013 Sam Soffes. All rights reserved.
// Copyright (c) 2010-2014 Sam Soffes. All rights reserved.
//

#import "SSKeychain.h"
Expand Down
2 changes: 1 addition & 1 deletion SSKeychain/SSKeychainQuery.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SSKeychain
//
// Created by Caleb Davenport on 3/19/13.
// Copyright (c) 2013 Sam Soffes. All rights reserved.
// Copyright (c) 2013-2014 Sam Soffes. All rights reserved.
//

#import <Foundation/Foundation.h>
Expand Down
2 changes: 1 addition & 1 deletion SSKeychain/SSKeychainQuery.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SSKeychain
//
// Created by Caleb Davenport on 3/19/13.
// Copyright (c) 2013 Sam Soffes. All rights reserved.
// Copyright (c) 2013-2014 Sam Soffes. All rights reserved.
//

#import "SSKeychainQuery.h"
Expand Down
2 changes: 1 addition & 1 deletion Tests/SSKeychainTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SSKeychainTests
//
// Created by Sam Soffes on 10/3/11.
// Copyright (c) 2011 Sam Soffes. All rights reserved.
// Copyright (c) 2011-2014 Sam Soffes. All rights reserved.
//

#import <XCTest/XCTest.h>
Expand Down

0 comments on commit 0459ab3

Please sign in to comment.