モーダル ビューとして表示する XIB があります。次を呼び出すボタンがあります-
(IBAction)dismissVC:(id)sender {
[self.parentViewController dismissModalViewControllerAnimated: YES];
}
私がそれを押すと、この通知でアプリがクラッシュします -
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[ViewController dismissVC:]: unrecognized selector sent to instance 0x8379350'
私が気付いたのは、ViewController.xib ファイルがあり、この MapView.xib があることです。これは、無視したいモーダル VC です。ViewController.xib から提示されます
考えられる問題は何ですか?すべてのアクションと File Onwer も接続しました。前もって感謝します!