Return to Snippet

Revision: 64956
at October 8, 2013 22:27 by ferlom


Initial Code
// Alertview login usuario y password

UIAlertView *alerta =[[UIAlertView alloc]
                          initWithTitle:@"Password" 
                          message:@"Por favor, introduzca 
							usuario/contraseña:" 
                          delegate:self 
                          cancelButtonTitle:@"Cancelar" 
                          otherButtonTitles:@"Aceptar", nil];
    
    [alerta setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput];
    
    [alerta show];

Initial URL


Initial Description


Initial Title
Alertview Texto securizado

Initial Tags


Initial Language
Other