我从Parse.com请求NSDictionary的文件表示(是的,我知道还有其他更明显的方法来存储字典),然后在完成块中,数据被取消归档并分配给属性。
当这段代码执行时,它似乎永远不会从unarchive行返回。什么都没有冻结,没有错误或异常。该应用程序继续运行,好像一切都很好。如果我在unarchiver行和它后面的行设置断点,第一个断点会被击中,但第二个断点永远不会。
我可以确认该函数已返回此文件的预期数据量。
PFFile *definitionFile = appObject[@"myFile"]; //PFFile reference from a PFObject
[definitionFile getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
if (!error) {
if (data) {
//A breakpoint on the following line does fire and show that there is data being given to the unarchiver
self.pendingDefinition = (NSDictionary *) [NSKeyedUnarchiver unarchiveObjectWithData:data];
}
//////Nothing beyond this point gets executed////////
[self handleNewDefinition];
} else {
NSLog(@"ERROR");
}
}];
答案 0 :(得分:0)
事实证明,数据存储为plist,我需要使用plist序列化来提取它:
if (data) {
NSError *error;
NSPropertyListFormat format;
NSDictionary* plist = [NSPropertyListSerialization propertyListWithData:data options:NSPropertyListImmutable format:&format error:&error];
if(!plist){
NSLog(@"Error: %@",error);
}