我想檢查用戶是否點擊「是」,例如我想要採取某種行動。如何檢查UIAlertView的返回值?
這是我的代碼行:
UIAlertView* mes=[[UIAlertView alloc] initWithTitle:@"Are you sure?" message:@"this will start a new game" delegate:self cancelButtonTitle:@"No" otherButtonTitles:@"Yes", nil];
[mes show];
所以我想說if user tap "yes" preform this action
這是我的方法:我想說的是,如果用戶點擊「是」創建新的遊戲。
- (IBAction)newGame:(UIButton *)sender {
UIAlertView* mes=[[UIAlertView alloc] initWithTitle:@"Are you sure?" message:@"this will start a new game" delegate:self cancelButtonTitle:@"No" otherButtonTitles:@"Yes", nil];
[mes show];
self.flipsCount = 0;
self.game = nil;
for (UIButton *button in self.cardButtons) {
Card *card = [self.game cardAtIndex:[self.cardButtons indexOfObject:button]];
card.unplayble = NO;
card.faceUp = NO;
button.alpha = 1;
}
self.notificationLabel.text = nil;
[self updateUI];
}
http://stackoverflow.com/questions/3826659/uialertview-delegates – 2013-03-12 09:23:01