objective-c – [__ NSCFType searchKeyword:]:无法识别的选择器发送到实例0x6d8eb80

前端之家收集整理的这篇文章主要介绍了objective-c – [__ NSCFType searchKeyword:]:无法识别的选择器发送到实例0x6d8eb80前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下代码是从storyboard向当前视图添加子视图:
EventSearchViewController* view1 = [self.storyboard instantiateViewControllerWithIdentifier:@"searchView"];

[view1 setBookingSystem:system];

[self.view addSubview:view1.view];

在视图“view1”中,有一个textField.以下是textField的IBAction,事件是“退出时结束”.

-(IBAction)searchKeyword:(id *)sender
{
    NSLog(@"searchKeyword");
}

以下是错误消息.

2012-05-26 20:26:47.369 OnlineBooking[6607:f803] -[__NSCFType searchKeyword:]: unrecognized selector sent to instance 0x6d8eb80

2012-05-26 20:26:47.369 OnlineBooking[6607:f803] * WebKit discarded an uncaught exception in the webView:shouldInsertText:replacingDOMRange:givenAction: delegate: -[__NSCFType searchKeyword:]: unrecognized selector sent to instance 0x6d8eb80

解决方法

您需要保留EventSearchViewController,或者如果您使用ARC,请保留对它的强引用.如果将它作为局部变量分配给view1,那么在调用searchKeyword:时它就不会再存在了. (错误显示其内存已释放并重新用于其他类型的对象.)
原文链接:https://www.f2er.com/c/119960.html

猜你在找的C&C++相关文章