- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
有时,当我想通过下载和解析 json 文件来更新我的核心数据文件时,我的应用程序会崩溃。我收到以下错误:
CoreData: error: Serious application error. Exception was caught during Core Data change processing. This is usually a bug within an observer of NSManagedObjectContextObjectsDidChangeNotification. -[__NSCFSet addObject:]: attempt to insert nil with userInfo (null)
如果我在迭代期间更改属性,那么在迭代中保存 NSManagedObjectContext 的位置是否重要?
这是我的代码:
- (void) updateData
{
dispatch_queue_t serialdQueue;
serialdQueue = dispatch_queue_create("update", NULL);
dispatch_async(serialdQueue, ^{
[self method1];
});
dispatch_async(serialdQueue, ^{
[self method2];
});
dispatch_async(serialdQueue, ^{
[self method3];
});
dispatch_async(serialdQueue, ^{
[self method4];
});
dispatch_async(serialdQueue, ^{
[self method5];
});
}
-(void)method1
{
//DOWNLOAD JSON FILE
}
-(void)method2 //here i add objects to the core data file
{
@try {
for (NSDictionary *jsonActivity in [json objectForKey:@"Activities"]) { //ITERATE THROUGH JSON ACTIVITY ARRAY
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Activity" inManagedObjectContext:self.managedObjectContext];
[request setEntity:entity];
NSPredicate *searchFilter = [NSPredicate predicateWithFormat:@"title == %@", [jsonActivity objectForKey:@"title"]]; // CHECK IF OBJECT FROM JSON FILE ALREADY EXISTS...
[request setPredicate:searchFilter];
NSError *error = nil;
NSArray *results = [self.managedObjectContext executeFetchRequest:request error:&error];
if (error) {
NSLog(@"Error %@", error);
abort();
}
if ([results count] == 0) { // ADD NEW ACTIVITY IF OLD LIST DOESNT CONTAIN IT
Activity *activity = [NSEntityDescription insertNewObjectForEntityForName:@"Activity" inManagedObjectContext:self.managedObjectContext];
activity.title = [jsonActivity objectForKey:@"title"];
activity.remove = [NSNumber numberWithBool:NO]; // REMOVE FLAG = NO BECAUSE NEW OBJECTS AREN'T REMOVED
} else {
Activity *activity = (Activity*) [results objectAtIndex:0];
activity.remove = [NSNumber numberWithBool:NO]; // IF OBJECT ALREADY EXISTS IT SHOULD BE OBTAINED
}
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
[appDelegate saveContext]; // SAVE MO CONTEXT
}
} @catch (NSException *exception) {
NSLog(@"Exception: %@", exception);
}
}
-(void)method3 // DELETE OLD OBJECTS
{
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"Activity" inManagedObjectContext:self.managedObjectContext];
[fetchRequest setEntity:entityDescription];
NSPredicate *searchFilter = [NSPredicate predicateWithFormat:@"remove == %@", [NSNumber numberWithBool:YES]];
[fetchRequest setPredicate:searchFilter];
NSArray *objectsToDelete = [[NSArray alloc] init];
NSError *error = nil;
objectsToDelete = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error];
if (error) {
NSLog(@"Error %@", error);
abort();
}
for (Activity *activity in objectsToDelete) { // DELETE OBJECTS WITH THE PROPERTY REMOVE = YES
[self.managedObjectContext deleteObject:activity]; // DELETE ACTIVITY
}
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
[appDelegate saveContext]; // SAVE MO CONTEXT
}
-(void)method4 // CHANGE THE REMOVE PROPERTY TO YES OF ALL OBJECTS
{
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"Activity" inManagedObjectContext:self.managedObjectContext];
[fetchRequest setEntity:entityDescription];
NSArray *objects = [[NSArray alloc] init];
NSError *error = nil;
objects = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error];
if (error) {
NSLog(@"Error %@", error);
abort();
}
for (Activity *activity in objects) {
activity.remove = [NSNumber numberWithBool:YES];
}
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
[appDelegate saveContext]; // SAVE MO CONTEXT
NSLog(@"End Update");
}
-(void)method5 //UPDATE UI
{
//UI UPDATES
}
最佳答案
您不应该访问 serialQueue
上的托管对象上下文。查看 NSManagedObjectContext
documentation 的并发部分.
如果在您的代码中您的上下文正在使用 NSPrivateQueueConcurrencyType
或 NSMainQueueConcurrencyType
并发类型,您可以使用一种基于 block 的方法来确保您在正确的队列中:
//asyncrhonous
[self.managedObjectContext performBlock:^{
//do stuff with the context
}];
//syncrhonous
[self.managedObjectContext performBlockAndWait:^{
//do stuff with the context
}];
关于ios - 核心数据 : Error when deleting/adding objects,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19184262/
我有一个场景,我们必须通过 Azure AD 对企业用户进行身份验证,但通过 Azure AD B2C 对外部用户进行身份验证——所有这些都来自同一个登录屏幕。 有一些 Web 应用程序将共享此功能。
在使用 Azure AD B2C 和 Azure AD B2B 之前,我通常会将应用程序添加到我们租户的 Azure AD 中,并且 Office 365 用户可以使用其帐户 (SSO) 访问应用程序
当 Azure Active Directory 信任访问本地 Active Directory 用户时,我们是否可以使用本地 AD 用户名(域限定的 sam 帐户名称,例如:cosmos\brahm
什么是在网站上展示广告的好托管广告管理器? 我听说过OpenX ,但从未使用过。 最佳答案 我们使用名为 Ad Serving Solutions http://www.adservingsoluti
是否可以将用户从云 Azure Active Directory 同步到本地 AD? On Premises 这里有点错误,因为它实际上是 Azure 中的虚拟网络,带有 Windows Server
我正在关注这里的答案:Multi-Tenant Azure AD Auth in Azure AD B2C with Custom Policies 以及这里的演练:https://github.co
我正在尝试使用/common Azure AD 端点在 Azure AD B2C 中使用 Azure AD Auth。根据How to sign in any Azure Active Directo
来自 Mercurial 文档: The manifest is the file that describes the contents of the repository at a particu
我正在尝试将 firebase admob 与 React Native 集成到我的应用程序中,一切都适用于 testID横幅 ('ca-app-pub-3940256099942544/293473
我有一个应用程序需要根据其本地 AD 通用名称来过滤权限。几点注意事项: Azure AD Connect 正在 OnPrem AD 和 Azure 之间同步数据 我已成功将登录用户的组信息从 Azu
我正在使用 blogspot 平台并在我的网站上使用了 Google Adsense。我想对齐一个自动 Adsense 广告,它根本不居中,而带有代码的广告则完全没有问题。它只是自动广告,有人可以帮助
为什么redirect URL必须完全匹配?在域级别进行匹配是否不足以提供适当的安全性? 如果我有数百条路径怎么办? 示例网址: https://myawesomesite.com https://m
我即将创建一个新的 Azure AKS 群集,并且希望将 AKS 与 Azure Key Vault 集成。几个月前,在学习阶段,我看到需要使用Azure AD pod管理的身份来做到这一点,但现在我
我正在尝试配置我的 Azure AD 以同步我的本地 AD DS,如果在 Microsoft Azure AD 中添加任何用户,它应该自动在我的本地 AD 中注册。 我已创建 Azure AD 并配置
我有大约 50 个用户的 Azure AD。这些用户是我们购买Office365时创建的。假设 Azure AD 上的域是 example.com。 ([email protected])在本地,我们
我正在尝试获取组 Azure AD 的名称,Azure 登录 (openId) 后的内部 token 我收到 json 格式的组 ID,但我需要组名称。 登录后的Json: Claims 尝试使用Gr
我们希望将 Azure AD B2C 用于我们的 Web 应用程序,以允许用户使用其公司 ADFS 帐户登录。 根据Azure Active Directory B2C: Add ADFS as a
首先,我无法了解为什么需要这些数据,也无法了解有关网络的细节。您必须相信我,除了运行 LDAP 查询的 PowerShell 脚本之外,没有其他方法可以获取这些数据。 我正在使用具有多个林和多个域的网
我是一个相当新的 PS 用户...正在寻求有关 powershell 脚本的帮助来获取用户所属的安全组列表。 描述我需要什么: 我有包含许多用户(samaccountnames)的输入列表(txt 文
我有两个要存储在目录中以供我的应用程序使用的声明。这些内容不可供用户编辑,但可用于应用程序从 token 中读取。 内置策略可以检索声明,但是,使用自定义策略检索这些声明没有取得任何成功。 通读文章“
我是一名优秀的程序员,十分优秀!