博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIImageView02
阅读量:6587 次
发布时间:2019-06-24

本文共 1218 字,大约阅读时间需要 4 分钟。

UIImageView相当于⼀个相框,⽤来显⽰图⽚,⾥边可以是⼀张图⽚,也可以是⼀组图⽚
 
//
//  ViewController.m
//  UIImageView 02
//
//  Created by cqy on 16/2/15.
//  Copyright © 2016年 程清杨. All rights reserved.
//
#import "ViewController.h"
@interface ViewController (){
    UIImageView *img;
}
@end
@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor yellowColor];
    img = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 200, 200)];
    img.backgroundColor = [UIColor whiteColor];
    // 不要将数据写⼊view
    // 准备⼀个image的数组
    NSMutableArray *imArr = [NSMutableArray array];
    // 循环⽣成image放⼊数组
    for(int i = 1; i < 4;i++){
        NSString *nameStr = [NSString stringWithFormat:@"%d",i];
        NSLog(@"-----%d",i);
           [imArr addObject:[UIImage imageNamed:nameStr]];
        }
    //执⾏⼀组所⽤时间
    img.animationDuration = 1;
    //循环三次
    img.animationRepeatCount = 3;
    // 将image数组 赋值给animationImages
    img.animationImages = imArr;
    //开始动画
    [img startAnimating];
    //结束动画
    //[img stopAnimating];
    [self.view addSubview:img];
    // Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
@end

转载于:https://www.cnblogs.com/iQingYang/p/5193204.html

你可能感兴趣的文章
Activity生命周期
查看>>
深度解析Istio系列之安全模块篇
查看>>
面向对象
查看>>
HDU 1058 Humble Numbers
查看>>
wps10.1中将txt转为excel
查看>>
[BZOJ3312][USACO]不找零(状压DP)
查看>>
gtp转换mbr
查看>>
poj1985 求树的直径
查看>>
js -- canvas img 封装
查看>>
适配器模式(数据库方面)支持不同的数据库连接
查看>>
CF456B Fedya and Maths 找规律
查看>>
转载:Beginning WF 4.0翻译——第三章(流程图工作流)
查看>>
芯片测试
查看>>
在源代码中插入防止盗版代码片段的方式
查看>>
ffserver联合ffmpeg建立媒体服务器
查看>>
微软URLRewriter.dll的url重写的简单使用(实现伪静态)
查看>>
leetcode -- Combination Sum II
查看>>
Navicat for MySQL 使用SSH方式链接远程数据库(二)
查看>>
poj 1274The Perfect Stall
查看>>
HDU 4720 Naive and Silly Muggles (外切圆心)
查看>>