gpt4 book ai didi

iphone - 由于未捕获的异常 'NSInvalidArgumentException' 而终止应用程序,原因 : '-[__NSCFType next]: unrecognized selector sent to instance '

转载 作者:行者123 更新时间:2023-11-29 04:27:34 25 4
gpt4 key购买 nike

由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[__NSCFType next]:发送到实例的无法识别的选择器”发生此错误是因为这一行“[self autorelease];”如果我评论这一行,那么异常不会出现,但应用程序看起来很慢,所以请告诉我我可以写什么而不是那一行

if(sqlite3_step(statement)==SQLITE_ROW)
{
pagestr = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement,0)];
//dateLabel.text=previousDate;
//textView.text=pagestr;
EditorPage* prev= [[EditorPage alloc] initWithNibName:@"EditorPage" bundle:nil];
prev.dateString= previousDate;
prev.bodyString= pagestr;
NSArray* array= [[NSArray alloc] initWithObjects:prev,@"forward",nil];
[[NSNotificationCenter defaultCenter] postNotificationName:@"next EditorPage" object:array];
[prev autorelease];
}

最佳答案

你什么时候做[ self autorelease ]?我认为这很不寻常——可能是不正确的。

此消息意味着您将next消息发送到NSCFType的对象。

此类消息通常是由于向已释放的对象发送消息而导致其内存随后重新分配给不同类型的对象而引起的。

您可以打开僵尸来追踪此类问题。 此外,您可以将代码移至 ARC,以帮助避免保留/释放问题。

关于iphone - 由于未捕获的异常 'NSInvalidArgumentException' 而终止应用程序,原因 : '-[__NSCFType next]: unrecognized selector sent to instance ' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12119728/

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