接收服务器上的图片,可以用webview或者 imageview

1.webview         

            UIWebView *photoWebView;

            NSURL *url =[NSURL URLWithString:urlString];

            NSURLRequest *request =[NSURLRequest requestWithURL:url];

            [photoWebView loadRequest:request];

2、uiimageview 

    NSURL *url=[NSURLURLWithString:url];

    UIImage *imagea = [UIImageimageWithData: [NSDatadataWithContentsOfURL:url]];

    UIImageView *imagh=[[UIImageView alloc] initWithImage:imagea];

    [imagh setFrame:CGRectMake(300,500,300,400)];

    [self.view addSubview:imagh];

原文地址:https://www.cnblogs.com/sgdkg/p/2715352.html