In your alertview you need to set the delegate to self if you want to use the delegate method of:
Code:
- (void)alert:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)buttonIndex
Code:
- (IBAction)pop{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"You got hit!!" message:@"You lasted %d seconds" delegate:self cancelButtonTitle:@"Close" otherButtonTitles:@"2", @"3",nil];
[alert show];
[alert release];
}