码迷,mamicode.com
首页 > 其他好文 > 详细

Objective C - 4 - 下载图片并且加载到View

时间:2014-05-30 20:28:32      阅读:347      评论:0      收藏:0      [点我收藏+]

标签:des   c   class   blog   code   http   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#import "LoadInternetImageViewController.h"
 
@interface LoadInternetImageViewController ()
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
 
@end
 
@implementation LoadInternetImageViewController
 
 
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
     
    [self loadImage];
}
 
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
 
- (void)loadImage
{
 
    UIImage *downloadedImage = [self downloadImage:imageUrlString];
     
    if(downloadedImage)
    {
        NSLog(@"Setting downloaded image to imageView.");
//        self.imageView.contentMode = UIViewContentModeScaleAspectFit;
        self.imageView.image = downloadedImage;
    }
    else
    {
        NSLog(@"Unable to find downloaded image.");
    }
}
 
-(UIImage *)downloadImage:(NSString *)imageUrlString
{
    NSData *imageStream = [NSData dataWithContentsOfURL:[NSURL URLWithString:imageUrlString]];
     
    if (imageStream) {
     
        return [UIImage imageWithData:imageStream];
         
    }
     
    return nil;
}
 
@end

  

Objective C - 4 - 下载图片并且加载到View,布布扣,bubuko.com

Objective C - 4 - 下载图片并且加载到View

标签:des   c   class   blog   code   http   

原文地址:http://www.cnblogs.com/sskset/p/3760154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!