我尝试使用parse.com教程,但对我没用,因为它使用了整个视图控制器。我需要上传刚刚拍摄的多张照片以及该页面上的多个文字字段。
感谢任何帮助。如果您可以使用解析教程在故事板中使用更多的图片并且还有文本字段保存,这可能是我能想到的最简单的方法。
答案 0 :(得分:0)
查看此LINK的示例代码。
// Convert to JPEG with 50% quality
NSData* data = UIImageJPEGRepresentation(imageView.image, 0.5f);
PFFile *imageFile = [PFFile fileWithName:@"Image.jpg" data:data];
// Save the image to Parse
[imageFile saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (!error) {
// The image has now been uploaded to Parse. Associate it with a new object
PFObject* newPhotoObject = [PFObject objectWithClassName:@"PhotoObject"];
[newPhotoObject setObject:imageFile forKey:@"image"];
[newPhotoObject saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (!error) {
NSLog(@"Saved");
}
else{
// Error
NSLog(@"Error: %@ %@", error, [error userInfo]);
}
}];
}
}];