ios - español - Acción del botón UIAlertView
cocoa touch español (1)
ACTUALIZACIÓN - mayo de 2016
UIAlertView está en desuso. Ahora puede usar UIAlertController como se explica aquí .
Respuesta anterior con UIAlertView
Puedes crear un UIAlertView como este
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Really reset?" message:@"Do you really want to reset this game?" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"reset", nil]; [alert show];
Para manejar el botón AlertView, haga clic en, debe cumplir con el protocolo
UIAlertViewDelegate
.@interface YourViewController:UIViewController<UIAlertViewDelegate>{ ....... ....... }
A continuación, implemente los métodos de protocolo
UIAlertViewDelegate
,- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{ if (buttonIndex == [alertView cancelButtonIndex]){ //cancel clicked ...do your action }else{ //reset clicked } }
¿Cómo puedo usar dos acciones para UIButton
clic en UIButton
? Tengo un UIAlertView que se muestra con dos botones. Reproducir de nuevo y salir. Ahora quiero ejecutar dos métodos en el evento click de estos botones.