2 番目の VC をモーダルで表示しようとすると、この警告が表示されます。
Warning: Attempt to present <RCTAddCardViewController: 0x1f5b21e0> on <IRSlidingSplitViewController: 0x1f538140> while a presentation is in progress!
これが私がやっている方法です:
UIViewController *pvc = [self presentingViewController];
[self dismissViewControllerAnimated:YES completion:^{
RCTAddCardViewController *vc = [[RCTAddCardViewController alloc] initWithNibName:nil bundle:nil];
[pvc presentViewController:vc animated:YES completion:nil];
}];
最初の VC の却下の完了ハンドラー内に表示されているため、エラー bc が発生することはありません。これをなくす方法を知っている人はいますか?