2013-03-12 80 views
0

我想檢查用戶是否點擊「是」,例如我想要採取某種行動。如何檢查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]; 
} 
+1

http://stackoverflow.com/questions/3826659/uialertview-delegates – 2013-03-12 09:23:01

回答

1
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { 
    if (buttonIndex != [alertView cancelButtonIndex]) 
    { 
     //User clicked ok 
     NSLog(@"ok"); 
     [self newGame:[UIButton alloc] ]; 
    } 
    else 
    { 
     //User clicked cancel 
     NSLog(@"cancel"); 
    } 
} 

它將ButtonIndex值從左到右。

+0

謝謝,請參閱我的問題更新的方法@Sunny – JohnBigs 2013-03-12 09:28:45

+0

保持該代碼如果塊 – Balu 2013-03-12 09:31:42

+0

一旦看到我的答案,它將工作。 – Balu 2013-03-12 09:33:50

0

使用的UIAlertView委託方法

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex 
{ 
    if (buttonIndex == 1)//Yes 
    { 
     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]; 
    } 
    else//No 
    { 
     //do something 
    } 
} 
0

將下面的方法在同一類(或類已設置爲delegate):

- (void)alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex 
{ 
    if (buttonIndex == 0) 
    { 
    //User clicked ok 
    } 
    else 
    { 
    //User clicked cancel 
    } 
} 
+0

謝謝,請參閱我的問題更新的方法@Sunkas – JohnBigs 2013-03-12 09:28:16

+0

@JohnBigs看到我更新的答案。 – Girish 2013-03-12 09:32:24