在我的iOS应用中,我正在使用Parse服务: 解析SDK版本1.9.1。
当我在iOS 7设备上运行时,以下块无法执行。但它在iOS 8/9设备中运行良好。
[prod saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (succeeded && !error) {
NSLog(@"Save successful");
}else {
NSLog(@"Error %@",error);
}
}];
我不明白为什么它在iOS 7中不起作用(与iOS 8/9相比)。 任何帮助表示赞赏。感谢。