次のコードを使用して、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];
しかし、それは機能していません。
ma URLFTP
に接続して画像を取得するには、資格情報を提供する必要があることを知っています。FTP
抜け道を教えてください。