Alertview Texto Plano


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // Alertview login usuario y password
  2.  
  3. UIAlertView *alerta =[[UIAlertView alloc]
  4. initWithTitle:@"Password"
  5. message:@"Por favor, introduzca
  6. usuario/contraseña:"
  7. delegate:self
  8. cancelButtonTitle:@"Cancelar"
  9. otherButtonTitles:@"Aceptar", nil];
  10.  
  11. [alerta setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput];
  12.  
  13. [alerta show];
  14.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.