O teclado aparecerá automaticamente no ios 8.3 enquanto estiver exibindo alertview ou alertcontroller

Atualizei o Xcode 6.3 e o ios8.3 verific meu código. então isso me dá um resultado estranho.

Aqui está a primeira tela do meu aplicativo de demonstração. aqui está um campo de texto. quando digito algo no teclado do campo de texto aberto.

depois de digitar concluído. Eu cliquei no botão Mostrar alerta. Eu exibi um alerta e a saída será a seguir.

Depois clique em cancelar. Eu exibi outro alerta, então o teclado de resultado estranho não deve abrir, mas quando clicar no botão Cancelar. exibir outro alerta e o teclado aparecerá automaticamente.

aqui está a próxima saída de tela

a seguir está o código

- (IBAction)MethodShowAlert:(id)sender 
 {

[tmptxtField resignFirstResponder];
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Check Alert textField" message:@"keyboard should not be open" delegate:self cancelButtonTitle:@"cancel" otherButtonTitles:nil];
[alert show];
 }

 - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
  {
    [self showCustomAlertWithTitle:nil];
  }


-(void)showCustomAlertWithTitle:(NSString *)title{
      UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Now Check" message:nil delegate:nil cancelButtonTitle:nil otherButtonTitles:nil, nil];

      [alertView show]
  }

questionAnswers(4)

yourAnswerToTheQuestion