我创建了聊天应用程序,其中我将数据保存在核心数据中。我使用以下实体,
我想获取所有唯一 customerno
的数据,并且该数据将按 messagedate
的降序排列,还包含从其他 messagetext
发送的最新 messagetext
cmid。我想显示列表像 facebook 聊天消息列表和微笑 View 。
我尝试以下代码,
-(NSArray *)getAllInstanceMessages{
NSError *error = nil;
NSFetchRequest * req = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName"IMDetails" inManagedObjectContext:theManageContext];
[req setPredicate:[NSPredicate predicateWithFormat"cmid=%@", theCmID]];
NSDictionary *entityProperties = [entity propertiesByName];
[req setEntity:entity];
[req setReturnsDistinctResults:YES];
[req setResultType:NSDictionaryResultType];
[req setPropertiesToFetch:[NSArray arrayWithObject:[entityProperties objectForKey"customerno"]]];
[req setSortDescriptors:[NSArray arrayWithObject:[[NSSortDescriptor alloc] initWithKey"messagedate" ascending:NO]]];
NSArray *result = [theManageContext executeFetchRequest:req error:&error];
if(error){
NSLog(@"%s, %@", __FUNCTION__, [error localizedDescription]);
return nil;
}
return result;
}
上面的代码给出了我的以下输出,
Printing description of result:
<_PFArray 0xa3cda70>(
{
customerno = CN00001;
customerno = CN00002;
customerno = CN00003;
}
)
我想要完整的数据以及这个唯一的数字,我的意思是包含唯一数据的字典/ManagedObject 数组,假设在上面的 CN0001 数字中,但它不包含其他属性值。
我在代码中做错了什么?
根据 setPropertiesToFetch 方法的 NSFetchRequest 类引用文档:“此值仅在 resultType 设置为 NSDictionaryResultType 时使用。”
关于iphone - 从核心数据中获取不同的数据以及降序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19067557/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |