El campo de texto de UIAlertView no muestra el teclado en iOS8
@implementation
UIAlertView *query;
@end
- (void)viewWillAppear:(BOOL)animated {
query = [[UIAlertView alloc]
initWithTitle:NSLocalizedString(@"New", @"")
message:nil
delegate:self
cancelButtonTitle:NSLocalizedString(@"Cancel", nil)
otherButtonTitles:NSLocalizedString(@"OK", @""), nil];
query.alertViewStyle = UIAlertViewStylePlainTextInput;
UITextField *textField = [_query textFieldAtIndex:0];
textField.placeholder = NSLocalizedString(@"Title", @"placeholder text where user enters name for new playlist");
textField.delegate = self;
[_query show];
}
DespuésUIAlertView
se muestra, también se muestra el teclado yUITextfield
es foco (solo funciona en iOS7 anterior, pero no funciona en iOS8). Yo he tratado[textfield becomeFirstResponder]
, pero no funcionó. Creo un nuevo proyecto y uso la cala anterior, funciona.
Mi problema: el teclado no se muestra conUIAlertViewStylePlainTextInput
estilo.
No se por que ¿Alguien me puede ayudar? Gracias.