我正在使用sd web image并在从back4app.com(解析服务器)获取图像时遇到问题。 我在主线程中使用下面的代码,没有主线程。 并尝试使用编码和无编码。 我从不同的URL获取另一个图像,但从back4app.com没有加载。
NSString *sttt2=flel.url;
NSString *str = [[NSString alloc] initWithUTF8String:[sttt2 cStringUsingEncoding:NSUTF8StringEncoding]];
NSURL *url2 = [NSURL URLWithString:str];
dispatch_async(dispatch_get_main_queue(), ^{
[immg1 sd_setImageWithURL:url2 placeholderImage:[UIImage imageNamed:@"profilemain_blu"]];
});
答案 0 :(得分:0)
在Parse Server的Docs上有一个上传文件的例子,它是下面的代码:
NSData *imageData = UIImagePNGRepresentation(image);
PFFile *imageFile = [PFFile fileWithName:@"image.png" data:imageData];
PFObject *userPhoto = [PFObject objectWithClassName:@"UserPhoto"];
userPhoto[@"imageName"] = @"My trip to Hawaii!";
userPhoto[@"imageFile"] = imageFile;
[userPhoto saveInBackground];
点击此处阅读更多内容:http://docs.parseplatform.org/ios/guide/#files
要检查的其他要点,是您正在使用的版本,有时与某些错误相关:https://github.com/parse-community/Parse-SDK-iOS-OSX/releases