我在升级到 iOS 9 时遇到了这个问题,Parse Framework 不能完全工作。
我无法检索 PFFiles 并且无法保存其中包含 PFFile 的任何 PFobject。
这是我在 iOS 8.3 上运行的代码:
-(void)Save{
......
NSData *imageData = UIImageJPEGRepresentation(ProfilePicture.image, 0.5);
NSString *filename = [NSString stringWithFormat:@"%@.jpg", usernameString];
PFFile *imageFile = [PFFile fileWithName:filename data:imageData];
[user setObject:imageFile forKey:@"ProfilePicture"];
[user saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (!error) {
NSLog(@"Saved");
}
else{
// Error
NSLog(@"Error: %@ %@", error, [error userInfo]);
}
}];
}