我正在尝试使用以下代码将图像从 FTP URL 加载到图像视图中
NSURL * imageURL = [NSURL URLWithString:@"ftp://50.63.12.12/bpthumb.jpg"];
NSURLRequest *request = [[NSURLRequest alloc]initWithURL:imageURL];
UIImage * image = [[[UIImage alloc]initWithData:request]autorelease];
UIImageView *imgView=[[UIImageView alloc]initWithFrame:CGRectMake(50, 50, 200, 200)];
[imgView setImage:image];
[self.view addSubview:imgView];
但它不起作用。
我知道我必须提供我的FTP
凭据才能连接到FTP
ma URL 并获取图像。
请给我建议出路。