Skip to content

Instantly share code, notes, and snippets.

@BradB132
Created June 10, 2015 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BradB132/3b1763bfd5b5f54e767c to your computer and use it in GitHub Desktop.
Save BradB132/3b1763bfd5b5f54e767c to your computer and use it in GitHub Desktop.
ViewControllerTransitionsPart3-4
@protocol TTInteractivePinchTransitionDelegate <NSObject>
-(void)delegateShouldPerformSegue:(TTInteractivePinchTransition*)transition
pinch:(UIPinchGestureRecognizer*)pinch;
@end
@interface TTInteractivePinchTransition : UIPercentDrivenInteractiveTransition
@property (nonatomic, weak) id<TTInteractivePinchTransitionDelegate> delegate;
-(void)handlePinch:(UIPinchGestureRecognizer*)pinch;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment