Created
March 13, 2012 21:10
-
-
Save jorgenpt/2031633 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UIImageView *nextView = [[UIImageView alloc] initWithImage:[self imageAtIndex:imageIndex]]; | |
[nextView setUserInteractionEnabled:YES]; | |
[nextView setGestureRecognizers:[currentImage gestureRecognizers]]; | |
[currentImage setGestureRecognizers:nil]; | |
[[self view] addSubview:nextView]; | |
[[self view] sendSubviewToBack:nextView]; | |
[nextView release]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment