Мне нужно перейти в другую сцену после нажатия кнопки просмотра предупреждений.
Вот мой код:
(IBAction)confirmar {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Confirmar"
message:@"Confirma que desea recibir notificaciones en su teléfono móvil"
delegate:self
cancelButtonTitle:@"Cancelar"
otherButtonTitles:@"Si quiero participar", nil];
[alertView show];
}
(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:
(NSInteger)buttonIndex {
if (buttonIndex == 1) {
inscrito *cambia = [[inscrito alloc] initWithNibName:@"inscrito" bundle:nil];
[cambia setTitle:@"inscrito"];
cambia.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
// [self.navigationController pushViewController:cambia animated:YES];
[self.navigationController presentModalViewController:cambia animated:YES];
[cambia release];
NSLog(@"Boton 1");
}
}
Я пытаюсь перейти на UIViewController, называемый "inscrito".
Я также добавил: #import "inscrito.h"
вверху файла ...