Unused code.

This commit is contained in:
Samuel Clay 2014-01-17 13:47:55 -08:00
parent 9918954883
commit 2c18234cd9

View file

@ -54,22 +54,6 @@
appDelegate.originalStoryViewNavController.navigationBar.hidden = YES;
id<UIViewControllerTransitionCoordinator> tc = appDelegate.masterContainerViewController.transitionCoordinator;
[tc notifyWhenInteractionEndsUsingBlock:^(id<UIViewControllerTransitionCoordinatorContext> context) {
NSLog(@"DONE!!!");
NSLog(@"Container View: %@", [context containerView]);
NSLog(@"From VC: %@", [context viewControllerForKey:UITransitionContextFromViewControllerKey]);
NSLog(@"To VC: %@", [context viewControllerForKey:UITransitionContextToViewControllerKey]);
NSLog(@"Initially Interactive: %i", [context initiallyInteractive]);
NSLog(@"Completion Curve: %d", [context completionCurve]);
NSLog(@"Is Animated: %i", [context isAnimated]);
NSLog(@"Is Cancelled: %i", [context isCancelled]);
NSLog(@"Is Interactive: %i", [context isInteractive]);
NSLog(@"Percent Complete: %f", [context percentComplete]);
NSLog(@"Presentation Style: %d", [context presentationStyle]);
NSLog(@"Transition Duration: %f", [context transitionDuration]);
}];
if (!appDelegate.masterContainerViewController.interactiveOriginalTransition) {
[self loadInitialStory];
}