嘿,当我推送另一个视图控制器时,我在 main.m 中得到了这个
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
我正在使用它来推动视图控制器 -
-(void)showMore:(UIButton *)sender
{
MoreViewController *moreViewController = [[MoreViewController alloc] init];
[self.navigationController pushViewController:moreViewController animated:YES];
}
我在这里发送消息
[moreButton addTarget:self action:@selector(showSettings:) forControlEvents:UIControlEventTouchUpInside];
这是我的错误-
2013-09-25 18:16:03.186 时间旅行[1591:60b] 应用程序窗口预计将在应用程序启动结束时具有根视图控制器 2013-09-25 18:16:05.179 时间旅行[1591:60b] -[NSConcreteValue showSettings:]:无法识别的选择器发送到实例 0x14e5ea70 2013-09-25 18:16:05.181 Time Travel[1591:60b] * 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:'-[NSConcreteValue showSettings:] : 无法识别的选择器发送到实例 0x14e5ea70' *First throw call stack: (0x2e1e5e8b 0x384e26c7 0x2e1e97b7 0x2e1e80b7 0x2e136e98 0x309a055f 0x309a04fb 0x309a04cb 0x3098c0f3 0x3099ff13 0x3099fbdd 0x3099ac09 0x3096ff59 0x3096e747 0x2e1b0f27 0x2e1b03ef 0x2e1aebdf 0x2e119541 0x2e119323 0x32e492eb 0x309d01e5 0x4cbd5 0x389dbab7) libc++abi.dylib: terminating with uncaught exception of type NSException