ボタンのIBActionからビューをプッシュしようとしていますが、次のエラーが発生します。
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[WebView initWithCoder:]: unrecognized selector sent to instance 0x68902b0'
コード:
-(IBAction)showWebsite:(id)sender {
NSLog(@"Web View!!!");
UIStoryboard* sb = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController* vc = [sb instantiateViewControllerWithIdentifier:@"web"];
[self.navigationController pushViewController:vc animated:YES];
何がうまくいかなかったのか、何か考えはありますか?_(IBAction)はに接続されていますTouchUpInside