gpt4 book ai didi

objective-c - [__NSCFType searchKeyword :]: unrecognized selector sent to instance 0x6d8eb80

转载 作者:太空狗 更新时间:2023-10-30 03:36:14 25 4
gpt4 key购买 nike

下面的代码是从 Storyboard中添加一个 subview 到当前 View :

EventSearchViewController* view1 = [self.storyboard instantiateViewControllerWithIdentifier:@"searchView"];

[view1 setBookingSystem:system];

[self.view addSubview:view1.view];

在 View “view1”中,有一个文本字段。以下是文本字段的 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: 被调用时,它就不会再存在了。 (该错误表明其内存已被释放并重新用于不同类型的对象。)

关于objective-c - [__NSCFType searchKeyword :]: unrecognized selector sent to instance 0x6d8eb80,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10766327/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com