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

UI_UIImageView 基本操作

时间:2015-07-03 20:46:56      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:ui   uiimageview   uiimage   方法   imageview   

UI_UIImageView 常用方法

// 使用ImageView 通过 name 找到图片
    UIImage *image = [UIImage imageNamed:@"bg_2"];

    // 添加 image 到 imageView 上
    UIImageView *imageView = [[UIImageView alloc] initWithImage:image];

    // 设置图片位置和大小
    imageView.frame = CGRectMake(40, 40, 90, 160);

    imageView.backgroundColor = [UIColor redColor];

    // 设置透明度
    imageView.alpha = 0.5;


    // 为图片添加点击事件
    // userInteractionEnabled 为 YES ,才能响应点击事件
    imageView.userInteractionEnabled = YES; // 设置图片可以交互
    // 设置手势
    UITapGestureRecognizer *singleTag = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapImageView:)];
    // 添加手势
    [imageView addGestureRecognizer:singleTag];
    // 显示/隐藏  YES 为隐藏
    imageView.hidden = NO;

    // 获取网络中的图片
    UIImage *netImage = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"www.google.com"]]];


    // 将 image 添加到 window 上,并释放内存
    [self.window addSubview:imageView];
    [imageView release];
    imageView = nil; // 安全释放

动态图

    UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"1.tiff"]];
    imageView.frame = CGRectMake(40, 50, 100, 100);

    // 把一组图片加到 imageView 上面

    NSMutableArray *array = [NSMutableArray array];

    for (int i = 1; i < 5; i++) {
//        NSString *name = [NSString stringWithFormat:@"00%d.tiff", i];
//        UIImage *image = [UIImage imageNamed:name];
        // 上面两句可以合为一句
        UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"%d.tiff", i]];
        [array addObject:image];
    }

    // 把数组放到imageView中
    imageView.animationImages = array;
    [self addSubview:imageView];

    // 播放时间
    imageView.animationDuration = 0.4f;
    // 播放次数
    imageView.animationRepeatCount = 0; // 0 就是无限次
    // 开始动画
    [imageView startAnimating];

    // 结束动画】
//    [imageView stopAnimating];

版权声明:本文为博主原创文章,未经博主允许不得转载。

UI_UIImageView 基本操作

标签:ui   uiimageview   uiimage   方法   imageview   

原文地址:http://blog.csdn.net/yadong_zhao/article/details/46745141

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