いくつかのテストを行っているときに、この問題に遭遇しました。ModalView1 というモーダル ビューを紹介しました。ModalView1 では、ボタンが押されると、ModalView2 と呼ばれる別のモーダル ビューが を使用して表示されpresentViewController
ます。次に、 ModalView2 を使用して却下しようとしましたが、機能しdismissViewControllerAnimated
ていません。
ボタンアクションのコードフラグメントは次のとおりです
- (void) buttonAction: (UIButton*) sender
{
ModalView *ModalView2 = [[ModalView alloc] init];
[self presentViewController:ModalView2 animated:YES completion:nil];
[self dismissViewControllerAnimated:YES completion:nil];
}
どんな助けでも大歓迎です。ありがとうございました。