私のコードでは、このクラスを使用しています:
https://github.com/gpambrozio/BlockAlertsAnd-ActionSheets
この方法でダイアログ ビューのボタンを押したときに、presentModalViewController を呼び出したい:
BlockAlertView *alert = [BlockAlertView alertWithTitle:@"Example" message:@"Text"];
[alert setDestructiveButtonWithTitle:@"Ok" block:^{
FirstView *firstView = [[FirstView alloc] initWithNibName:@"FirstView" bundle:nil];
[self presentModalViewController:firstView animated:YES];
}];
[alert show];
しかし、アプリがフリーズし、1分後にビューが開くので、ブロック完了でmodalviewcontrollerを提示するにはどうすればよいですか?