如何在不下载的情况下显示 ftp 服务器上的图像?& 仅使用 URL
我尝试过的代码如下:
//TRY 1
[img_avatar setImageWithURL:[NSURL URLWithString:@"ftp://UserName:password@host/arrows.png"]];
//TRY 2
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:picpath]];
//download
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse * r, NSData * d, NSError * e)
{
[Userpicture_mark setImage:[UIImage imageWithData:d]];
}];
但是图像不显示。我怎样才能做到这一点? 帮我解决这个问题。