' saveInBackgroundWithBlock'不适用于iOS 7,解析1.9.1

时间:2016-01-04 12:21:52

标签: ios iphone parse-platform ios7 ios8

在我的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相比)。 任何帮助表示赞赏。感谢。

0 个答案:

没有答案