(1)创建
UIImageView *imageView = [[UIImageView alloc ] init];
UIImage *image = [UIImage imageNamed:@"image.png"];
imageView.image = image;
```
(2)设置圆角
imageView.layer.masksToBounds = YES;
imageView.layer.cornerRadius = 5;
```
(3)设置边框颜色和大小
imageView.layer.borderColor = [UIColor orangeColor].CGColor;
imageView.layer.borderWidth = 5;
(4)contentMode属性:
这个属性是用来设置图片的显示方式,如居中、居右,是否缩放等:
1、UIViewContentModeScaleToFill 会导致图片变形
2、UIViewContentModeScaleAspectFit 缩放内容到合适的大小,边界多余部分透明
3、UIViewContentModeScaleAspectFill 缩放内容填充到指定大小,边界多余的部分省略
4、UIViewContentModeRedraw 重绘视图边界
5、UIViewContentModeCenter 视图保持等比缩放
6、UIViewContentModeTop 视图顶部对齐
7、UIViewContentModeBottom 视图底部对齐
8、UIViewContentModeLeft 视图左侧对齐
9、UIViewContentModeRight 视图右侧对齐
10、UIViewContentModeTopLeft 视图左上角对齐
11、UIViewContentModeTopRight 视图右上角对齐
12、UIViewContentModeBottomLeft 视图左下角对齐
13、UIViewContentModeBottomRight 视图右下角对齐
imageView.contentMode = UIViewContentModeScaleAspectFit;
>######注意:
以上几个常量,凡是没有带Scale的,当图片尺寸超过 ImageView尺寸时,只有部分显示在ImageView中。
UIViewContentModeScaleToFill属性会导致图片变形。
UIViewContentModeScaleAspectFit会保证图片比例不变,而且全部显示在ImageView中,这意味着ImageView会有部分空白。
UIViewContentModeScaleAspectFill也会证图片比例不变,但是是填充整个ImageView的,可能只有部分图片显示出来。
(5)播放一系列图片
UIImage *image1 = [UIImage imageNamed:@"image1.png"];
UIImage *image2 = [UIImage imageNamed:@"image2.png"];
UIImage *image3 = [UIImage imageNamed:@"image3.png"];
NSArray *images = @[image1,image2,image3];
imageView.animationImages = images;
// 图片在多少秒内播放完
imageView.animationDuration = 3;
// 播放多少遍,0表示无数遍
imageView.animationRepeatCount = 0;
// 开始播放
[imageView startAnimating];
```
(6)为图片添加单击事件:将userInteractionEnabled置为YES,这样才能响应单击事件
imageView.userInteractionEnabled = YES;
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapImageView:)];
[imageView addGestureRecognizer:singleTap];
(7)其他设置
隐藏或者显示图片
imageView.hidden = YES或者NO;
设置透明度
imageView.alpha =0.5;
设置高亮时显示的图片
imageView.highlightedImage = (UIImage *)hightlightedImage;
设置正常显示的图片
imageView.image = (UIImage *)image;
设置位置
imageView.frame = CGRectMake(10, 66, 300, 400);
imageView.center = CGPointMake(0, 0);