zoukankan      html  css  js  c++  java
  • ipad 使用UIImageView显示网络上的图片

    1.启动xcode,新建一个项目,名称为imageview3
    2。双击imageview3ViewController.xib调出interface,然后增加一个uiimageview到界面里
    3。修改imageview3viewcontroller.h
    @interface imageview3ViewController : UIViewController {
            IBOutlet UIImageView *img1;
        }
        @property (nonatomic,retain) UIImageView *img1;
    @end
    4.切回interface,将uiimageview与img1进行关联
    5。修改imageview3viewcontroller.m文件
    @implementation imageview3ViewController
    @synthesize img1;
    然后在viewDidLoad方法中加入以下代码
    NSString *URL = @"http://www.yn.xinhuanet.com/employment/2006-09/27/xin_54090327100067157979.jpg";
        NSLog(@"%@",URL);
        NSData *imageData = [[NSData alloc]initWithContentsOfURL:[NSURL URLWithString:URL]];
        UIImage *image=[[UIImage alloc] initWithData:imageData];
        [img1 setImage:image];   
        //[img1 setImage:image];
        [imageData release];
        [super viewDidLoad];
    7。使用command+shift+r 调 出console窗口 ,看看nslog是否有执行
    8.使用command+r 运行,就可以看到你想要的图片喽
  • 相关阅读:
    使用contentProvider
    创建Sqlite数据库(一)
    AIDL实现进程间通信
    Messenger实现进程间通信(IPC)
    Serializable使用
    Parcelable使用(二)
    STAR法则
    Python系列-------基本语法
    前端随心记---------面试题集
    前端随心记---------惟客科技面试
  • 原文地址:https://www.cnblogs.com/top5/p/2402315.html
Copyright © 2011-2022 走看看