I am using sd web image and facing problem in getting image from back4app.com (parse server). I have use below code with in main thread and without main thread. And also try with encoding and without encoding. I am getting another image from different url but from back4app.com not loading.
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"]];
});