gpt4 book ai didi

iphone - 核心数据错误 : _Unwind_Resume called from function _PFFaultHandlerLookupRow in image CoreData

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:52:41 28 4
gpt4 key购买 nike


我从 Core Date 收到这个奇怪的错误,我不明白为什么。
当我删除 UITableView 的一行时,将执行下面的代码。
我将一个字符串和一个对象传递给下面的方法,它在具有该字符串和该对象的外键的数据库表中获取文章。然后我删除该对象并重新加载表。

- (void)deleteFavorite:(NSString *)link inFolder:(Favorites *)f {    NSFetchRequest *request = [[NSFetchRequest alloc] init];    NSEntityDescription *favsDecriptor = [NSEntityDescription entityForName:@"Favorites" inManagedObjectContext:context];    [request setEntity:favsDecriptor];    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"(belongsTo == %@) AND (link = %@)", f, link];    [request setPredicate:predicate];    NSError *error = nil;       NSMutableArray *fav = [[NSMutableArray alloc] init];    fav = [[context executeFetchRequest:request error:&error] retain];    if (![context save:&error]) {        NSLog(@"Cannot fetch the story from the fetch request.");    }    NSLog([[fav objectAtIndex:0] title]);    error = nil;    [context deleteObject:[fav objectAtIndex:0]];    if (![context save:&error]) {        NSLog(@"Can't delete the fav! %@", error);    }}

应用程序立即崩溃,我在控制台中收到此消息。但是当我之后启动该应用程序时,该行已被删除。

Detected an attempt to call a symbol in system libraries that is not present on the iPhone:_Unwind_Resume called from function _PFFaultHandlerLookupRow in image CoreData.

请帮忙!
提前感谢大家!

最佳答案

这可能与 Core Data 本身的错误有关。我遇到了同样的错误(我在 SO 中询问过它),我唯一的解决方法是更改​​谓词中仍然允许相同结果的关键字。需要进行一些试验才能找到正确的组合。不理想,但根据我的经验,这是我能提供的最佳答案。

关于iphone - 核心数据错误 : _Unwind_Resume called from function _PFFaultHandlerLookupRow in image CoreData,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4622079/

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