Posted By


ferlom on 10/08/13

Tagged


Statistics


Viewed 100 times
Favorited by 0 user(s)

Alertview Basico


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



Copy this code and paste it in your HTML
  1. // AlertView Basico
  2.  
  3. UIAlertView *alertaBasica =[[UIAlertView alloc]
  4. initWithTitle:@"Saludo inicial"
  5. message:@"Hola a Todos!"
  6. delegate:nil
  7. cancelButtonTitle:@"Cancelar" otherButtonTitles:@"Ok", nil];
  8. [alerta show];
  9.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.