iPhone でアラート出す。
といってもこれだけ。
- (void)alertView:(UIAlertView*)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { /* 何かの処理 */ [alertView release]; } - (IBAction) selectTimeTrial { UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"タイトル" message:@"このコード書くのに何分?" delegate:self cancelButtonTitle:nil otherButtonTitles:@"1 分", @"3 分", @"5 分", nil]; [alert show]; }