Cancel
メニューにボタンがあり、タッチすると「」と「」の2つのボタンでアラートメッセージがポップアップ表示されますYes
。これは私がアラートのために持っているコードです:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Exit game"
message:@"Are you sure?"
delegate:nil
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Yes", nil];
[alert show];
ボタン「Yes
」にアクションを追加することはできますか?