Skip to content

Instantly share code, notes, and snippets.

@jcromartie
Created February 14, 2013 22:03
Show Gist options
  • Select an option

  • Save jcromartie/4956809 to your computer and use it in GitHub Desktop.

Select an option

Save jcromartie/4956809 to your computer and use it in GitHub Desktop.
- (void)showAlert
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"wut" message:@"really?" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
alert.show;
}
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
self.showAlert;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment