1

4 つのボタンを持つ 2 つのアラートを正常に作成できました。最初の AlertView はうまく機能しますが、2 番目の AlertView はクラッシュします。これが私のコードです:

-(void)showAlertWithTextField{
UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@"info" message:@"Set Time For The Game." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:@"cancel", nil];
[alertView setTag:101];
alertView.alertViewStyle=UIAlertViewStylePlainTextInput;
[[alertView textFieldAtIndex:0] setKeyboardType:UIKeyboardTypeNumberPad];
[[alertView textFieldAtIndex:0] becomeFirstResponder];
[alertView show];
}

-(void)showexitAlertView
{
UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@"Timeout" message:[NSString stringWithFormat:@"Your final score is: %i", runningSore] delegate:self cancelButtonTitle:@"Restart" otherButtonTitles:@"Exit", nil];
[alertView setTag:102];
[alertView show];
}

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
UITextField *field = [alertView textFieldAtIndex:0];
setTime = [field.text intValue];

NSLog(@"%d", setTime);
if (alertView.tag == 101 && buttonIndex == 0) {
    //if (buttonIndex == 0){
    NSLog(@"Ok");
    [self setTimer];
    [self countDownTimerPrepare];
    [self countDownTimerIntro];
    [self prepareForIntroAnimation];
    [self performIntroAnimation];
    [self categoriesList];
}
else if (buttonIndex == 1){
    NSLog(@"Cancel");
    ChooseViewController * controller = [[ChooseViewController alloc] initWithNibName:@"ChooseViewController" bundle:nil];
    //controller.countdownLabel.text= score;
    [self presentViewController:controller animated:YES completion:nil];
}
else if (alertView.tag==102 && buttonIndex == 0){


        NSLog(@"Restart");
    }
else if (buttonIndex == 1){
    NSLog(@"Exit");

}
}

2番目のアラートビューからボタンを押したときのdrbuggingメッセージは次のとおりです。

2013-09-11 17:12:06.106 Diplomatiki[2808:c07] * キャッチされない例外 'NSInvalidArgumentException' が原因でアプリを終了します。理由: 'textFieldIndex (0) はテキスト フィールドの配列の範囲外です' *最初のスロー呼び出しstack: (0x1c42012 0x1737e7e 0x1c41deb 0xa7f0f0 0xb5d0 0xa72020 0x174b705 0x682920 0x6828b8 0x743671 0x743bcf 0x742d38 0x6b233f 0x6b2552 0x6903aa 0x681cf8 0x1fc2df9 0x1fc2ad0 0x1bb7bf5 0x1bb7962 0x1be8bb6 0x1be7f44 0x1be7e1b 0x1fc17e3 0x1fc1668 0x67f65c 0x29fd 0x2925 0x1) libc++abi.dylib: terminate called throwing an exception

私はどんな提案にも感謝します。前もって感謝します。

4

3 に答える 3

1

アクセル、前のケースと同じ問題

- (BOOL)alertViewShouldEnableFirstOtherButton:(UIAlertView *)alertView
{

  if (alertView.tag == 101){
   NSString *inputText = [[alertView textFieldAtIndex:0] text];
    if( [inputText length] >= 1 ){
       return YES;
     }
     else{
       return NO;
     }
   }else{
      return NO;
     }
 }
于 2013-09-11T16:52:44.243 に答える