6. UIImageView 的使用

1. UIImageView 的认识

QQ:853740091

UIImageView 继承UIView,通过他的名字我们也可以看出这个是用来显示图片的

2. 使用方法

UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 50, 50, 600)];

// 背景颜色

imageView.backgroundColor = [UIColor redColor];

// 设置显示的图片

imageView.image = [UIImage imageNamed:@"picheng.jpg"];

// UIImageView的填充模式

// 占满

imageView.contentMode = UIViewContentModeScaleToFill;

// 按原比例填充

imageView.contentMode = UIViewContentModeScaleAspectFit;

// 按比例填满

imageView.contentMode = UIViewContentModeScaleAspectFill;

[self.view addSubview:imageView];

还有一种比较常用的实例化imageView的方式

UIImageView *imageViewOne = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"picheng.jpg"]];

imageViewOne.frame = CGRectMake(100, 100, 200, 200);

[self.view addSubview:imageViewOne];

加载网上的图片(比较卡,因为在主线程中完成)

UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://farm4.static.flickr.com/3092/2915896504_a88b69c9de.jpg"]]];

UIImageView *imageView = [[UIImageView alloc] initWithImage:image];

//   设置圆角

imageView.layer.masksToBounds = YES;

imageView.layer.cornerRadius = 10;

//   设置边框颜色和大小

imageView.layer.borderColor = [UIColor orangeColor].CGColor;

imageView.layer.borderWidth = 2;

3. 播放图片

// 创建UIImageView

UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(20, 120, 300, 400)];

imageView.tag = 119;

[self.view addSubview:imageView];

// 设置图片数组

NSMutableArray *arrayM = [[NSMutableArray alloc] init];

for (int i = 0 ; i < 75; i ++) {

// 获取图片的名称

NSString *imageName = [NSString stringWithFormat:@"img_%d",i];

// 获取image对象

UIImage *image = [UIImage imageNamed:imageName];

// 把对象放进数组

[arrayM addObject:image];

}

// 设置图片数组

imageView.animationImages = arrayM;

// 设置播放时间

imageView.animationDuration = 5;

// 设置播放次数(0 无限循环播放)

imageView.animationRepeatCount = 1;

// 开始播放

// [imageView startAnimating];

简单实例代码: https://github.com/mcj122755/UIImageViewDemo2.git

时间: 2024-10-05 23:56:37

6. UIImageView 的使用的相关文章

通过 CALayer 修改 UIImageView 的界面属性

界面属性的修改是每一个开发者必须知道的,为什么我就记不住呢, shit, 又耽误了时间,为了防止再找不到,特把一些常用的 CALayer属性记在这里,顺便分享 1.设置阴影 1 imageView.layer.shadowColor = [UIColor grayColor].CGColor; 2 imageView.layer.shadowOffset = CGSizeMake(10, 10); 3 imageView.layer.shadowOpacity = 0.5; * 第1行设置阴影的

iOS开发——UI篇Swift篇&amp;UIImageView

UIImageView 1 override func viewDidLoad() { 2 super.viewDidLoad() 3 4 titleLabel.text = titleString 5 6 //通过坐标和大小来创建图像视图 7 var imageView:UIImageView = UIImageView(frame: CGRectMake(20, 100, 90, 90)) 8 imageView.image = UIImage(named: "SwiftClassWeiXi

如何高性能的给 UIImageView 加个圆角?

不好的解决方案 使用下面的方式会强制Core Animation提前渲染屏幕的离屏绘制, 而离屏绘制就会给性能带来负面影响,会有卡顿的现象出现 self.view.layer.cornerRadius = 5; self.view.layer.masksToBounds = YES; 正确的解决方案:使用绘图技术 - (UIImage *)circleImage { // NO代表透明 UIGraphicsBeginImageContextWithOptions(self.size, NO, 0

IOS开发之Bug--关于UIImageView的使用

这里是遇到的一个关于使用UIImageView的小bug,bug就是加载不出来图片. 原因:如果图片资源是jpg文件,如果代码没有加后缀.jpg就会出现不加载出来的情况: 添加上.jpg就能加载出来了. 另外,如果直接把jpg文件的后缀改成.png,Xcode会识别出这个不是png文件哦.

IOS基础控件--UIImageView、UITextField

UIImageView:1 - (void)viewDidLoad { 2 [super viewDidLoad]; 3 4 UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(SCREENWIDTH / 2 - 46, 66, 92, 84)]; 5 imgView.image = [UIImage imageNamed:@"logo"]; 6 [self.view addSubview:imgVi

touchesBegan: withEvent: &lt;--- with UIScrollView / UIImageView

touchesBegan: withEvent: / touchesMoved: withEvent: / touchesEnded: withEvent: 等只能被UIView捕获(如有问题请指出对请指出,路过的大牛请勿喷),当我们创建 UIScrollView 或 UIImageView 时,当点击时UIScrollView 或 UIImageView 会截获touch事件,导致touchesBegan: withEvent:/touchesMoved: withEvent:/touches

iOS图片填充UIImageView(contentMode)

本文主要形象的介绍一下UIView的contentMode属性: 核心代码 [self.prp_imageView setContentMode:UIViewContentModeScaleAspectFill]; self.prp_imageView.clipsToBounds = YES;   UIViewContentModeScaleAspectFit, //这个图片都会在view里面显示,并且比例不变 这就是说 如果图片和view的比例不一样 就会有留白如下图1 UIViewConte

UIImageview的简单运用

UIImageView,顾名思义,是用来放置图片的.使用Interface Builder设计界面时,当然可以直接将控件拖进去并设置相关属性,这就不说了,这里讲的是用代码. 1.创建一个UIImageView: 创建一个UIImageView对象有五种方法: UIImageView *imageView1 = [[UIImageView alloc] init]; UIImageView *imageView2 = [[UIImageView alloc] initWithFrame:(CGRe

UIImageView和UIImage

UIImage的两种创建方式: •方式一:有缓存(图片所占用的内存会一直停留在程序中) + (UIImage *)imageNamed:(NSString *)name; name是图片的文件名 •方式二:无缓存(图片所占用的内存会在一些特定操作后被清除) + (UIImage *)imageWithContentsOfFile:(NSString *)path - (id)initWithContentsOfFile:(NSString *)path; path是图片的全路径 iOS中UIIm

iOS学习-UIImageView

////  ViewController.m//  UIImageView详解////  Created by 大欢 on 16/1/20.//  Copyright © 2016年 bjsxt. All rights reserved.// #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad {    [super