技術をかじる猫

適当に気になった技術や言語、思ったこと考えた事など。

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];
}