Skip to content

Commit

Permalink
pods copy works now
Browse files Browse the repository at this point in the history
  • Loading branch information
superarts committed Jun 11, 2014
1 parent 4225a49 commit a264d4c
Show file tree
Hide file tree
Showing 12 changed files with 390 additions and 23 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -17,3 +17,4 @@ DerivedData

# CocoaPods
Pods/
.*.sw*
8 changes: 6 additions & 2 deletions Examples/LikedOrNope/LikedOrNope/AppDelegate.m
Expand Up @@ -31,10 +31,14 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];

self.window.rootViewController = [ChoosePersonViewController new];
[self setController];

return YES;
}

- (void)setController
{
self.window.rootViewController = [ChoosePersonViewController new];
}

@end
Expand Up @@ -28,6 +28,9 @@
#define AntiARCRetain(...) void *retainedThing = (__bridge_retained void *)__VA_ARGS__; retainedThing = retainedThing

@interface ChoosePersonViewController : UIViewController <MDCSwipeToChooseDelegate>
{
NSMutableArray* views;
}

@property (nonatomic, strong) Person *currentPerson;
@property (nonatomic, strong) ChoosePersonView *frontCardView;
Expand Down

0 comments on commit a264d4c

Please sign in to comment.