按下按钮时无法识别选择器错误

时间:2012-06-08 10:58:40

标签: objective-c ios cocoa-touch uiviewcontroller uibutton

基本上,我收到错误:

-[UIViewController donePress:]: unrecognized selector sent to instance 0x6a7f7c0
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController donePress:]: unrecognized selector sent to instance 0x6a7f7c0'
*** First throw call stack:
(0x13cd022 0x155ecd6 0x13cecbd 0x1333ed0 0x1333cb2 0x13cee99 0x1a14e 0x1a0e6 0xc0ade 0xc0fa7 0xc0266 0x3f3c0 0x3f5e6 0x25dc4 0x19634 0x12b7ef5 0x13a1195 0x1305ff2 0x13048da 0x1303d84 0x1303c9b 0x12b67d8 0x12b688a 0x17626 0x1d6d 0x1cd5)
terminate called throwing an exception

每当我按下按钮。此按钮位于第二个视图中,该视图已加载:

replacementController = [[UIViewController alloc] initWithNibName:@"NFCController" bundle:nil];
[self.view addSubview:self.replacementController.view];

通过使用拆分窗格视图并控制拖动到头文件,该按钮已连接到类。 Xcode生成了相关的方法。但是,现在当我单击按钮时,它会因上面的错误而崩溃。

如果您需要更多信息,请告诉我们。

由于

1 个答案:

答案 0 :(得分:4)

您正在初始化UIViewController而不是NFCController

将初始化更改为

replacementController = [[NFCController alloc] initWithNibName:@"NFCController" bundle:nil];

说明:正在创建的对象是UIViewController而不是NFCController 并且UIViewController没有名为donePress:的函数,因此您收到错误