こんにちはみんな、私はボタンにリンクされてIBAction:SecondViewControllerclickedButtonAtIndex:私はこれを持って働いていない
- (IBAction)showCurl:(id)sender {
alert1 = [[UIAlertView alloc]initWithTitle:@"Loading" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:nil];
[alert1 show];
}
と自動実行にclickedButtonIndex何とかそれはロードされません:
#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
}
}
ここに何か不足していますか?
問題は何ですか?アラートが表示されていますか?そうであれば、デリゲートメソッドが呼び出されていますか? –
警告は表示されますが、 ' - (void)alertView:(UIAlertView *)alert1 clickedButtonAtIndex:(NSInteger)buttonIndex {' –