Skip to content

Instantly share code, notes, and snippets.

@jorgenpt
Created March 13, 2012 21:10
Show Gist options
  • Save jorgenpt/2031633 to your computer and use it in GitHub Desktop.
Save jorgenpt/2031633 to your computer and use it in GitHub Desktop.
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