Привет, ребята у меня есть это я IBAction связан с кнопкой:clickedButtonAtIndex: не работает
- (IBAction)showCurl:(id)sender {
alert1 = [[UIAlertView alloc]initWithTitle:@"Loading" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:nil];
[alert1 show];
}
и clickedButtonIndex для автоматического запуска, но почему-то не загружается SecondViewController:
#pragma mark UIAlertView
- (void)alertView:(UIAlertView *)alert1 clickedButtonAtIndex:(NSInteger)buttonIndex {
if(buttonIndex == 0){
SecondViewController *sampleView = [[SecondController alloc] init];
[sampleView setModalTransitionStyle:UIModalTransitionStylePartialCurl];
[self presentModalViewController:sampleView animated:YES];
}
else{
// Cancel prompt
}
}
Я что-то пропустил?
В чем проблема? было показано предупреждение? если это так, называется метод делегата? –
Предупреждение отображается, но оно не переключается на SecondViewController, как показано в '- (void) alertView: (UIAlertView *) alert1 clickedButtonAtIndex: (NSInteger) buttonIndex {' –