web-dev-qa-db-ja.com

Xcode iPhoneプログラミング:jpgをURLからUIImageViewにロードする

私のアプリはhttpサーバーから画像をロードし、UIImageViewに表示する必要があります
どうやってやるの??
これを試しました:

NSString *temp = [NSString alloc];
[temp stringwithString:@"http://192.168.1.2x0/pic/LC.jpg"]
temp=[(NSString *)CFURLCreateStringByAddingPercentEscapes(
    nil,
    (CFStringRef)temp,                     
    NULL,
    NULL,
    kCFStringEncodingUTF8)
autorelease];


NSData *dato = [NSData alloc];
 dato=[NSData dataWithContentsOfURL:[NSURL URLWithString:temp]];
 pic = [pic initWithImage:[UIImage imageWithData:dato]];

このコードはビューのviewdidloadにありますが、何も表示されません!私はそれからXMLファイルをロードできるため、サーバーは動作しています。しかし、私はその画像を表示することはできません!
渡されたパラメータに応じて画像を変更する必要があるため、プログラムで画像を読み込む必要があります!前もって感謝します。アントニオ

21
Antonio Murgia

そのはず:

NSURL * imageURL = [NSURL URLWithString:@"http://192.168.1.2x0/pic/LC.jpg"];
NSData * imageData = [NSData dataWithContentsOfURL:imageURL];
UIImage * image = [UIImage imageWithData:imageData];

image変数を取得したら、UIImageViewプロパティを介してimageにスローできます。

myImageView.image = image;
//OR
[myImageView setImage:image];

元の文字列の特殊文字をエスケープする必要がある場合は、次を実行できます。

NSString * urlString = [@"http://192.168.1.2x0/pic/LC.jpg" stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding];
NSURL * imageURL = [NSURL URLWithString:urlString];
....

プログラムでUIImageViewを作成している場合、次のようにします。

UIImageView * myImageView = [[UIImageView alloc] initWithImage:image];
[someOtherView addSubview:myImageView];
[myImageView release];
82
Dave DeLong

また、URLから画像を読み込むには時間がかかるため、非同期で読み込む方が良いでしょう。次のガイドは、私にとってそれを愚かで単純なものにしました。

http://www.switchonthecode.com/tutorials/loading-images-asynchronously-on-iphone-using-nsinvocationoperation

6
nosuic

これが実際のコードです。

UIImageView *myview=[[UIImageView alloc]init];

    myview.frame = CGRectMake(0, 0, 320, 480);

    NSURL *imgURL=[[NSURL alloc]initWithString:@"http://soccerlens.com/files/2011/03/chelsea-1112-home.png"];

    NSData *imgdata=[[NSData alloc]initWithContentsOfURL:imgURL];

    UIImage *image=[[UIImage alloc]initWithData:imgdata];

    myview.image=image;

    [self.view addSubview:myview];
3

背景に画像をロードする必要があります。そうしないと、ビューがフリーズします。これを試して:

UIImage *img = [[UIImage alloc] init];

dispatch_async(dispatch_get_global_queue(0,0), ^{

    NSData * data = [[NSData alloc] initWithContentsOfURL: [NSURL URLWithString:@"http://www.test.com/test.png"];
    img = [UIImage imageWithData: data];

     dispatch_async(dispatch_get_main_queue(), ^{
        //PUT THE img INTO THE UIImageView (imgView for example)
        imgView.image = img;
     });
});
3
ThePunisher

これを試して

NSURL *url = [NSURL URLWithString:@"http://192.168.1.2x0/pic/LC.jpg"];
 NSData *data = [NSData dataWithContentsOfURL:url];
UIImageView *subview = [[UIImageView alloc] initWithFrame:CGRectMake(0.0f, 0.0f,320.0f, 460.0f)];
[subview setImage:[UIImage imageWithData:data]]; 
[cell addSubview:subview];
[subview release];

ではごきげんよう。

3
Warrior