博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIKit 框架之UIImageView
阅读量:6338 次
发布时间:2019-06-22

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

////  ViewController.m//  UIImageView////  Created by City--Online on 15/5/18.//  Copyright (c) 2015年 XQB. All rights reserved.// #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad {    [super viewDidLoad];    UIImage *img=[UIImage imageNamed:@"2.jpg"];    UIImage *img1=[UIImage imageNamed:@"3.jpg"];    //基本属性//    UIImageView *ImgView=[[UIImageView alloc]initWithImage:img highlightedImage:img1];//    ImgView.frame=[UIScreen mainScreen].bounds;//    ImgView.highlighted=YES;//    [self.view addSubview:ImgView];         //动画    UIImageView *imgView=[[UIImageView alloc]initWithFrame:[UIScreen mainScreen].bounds];    NSArray *animationImages=[[NSArray alloc]initWithObjects:img,img1, nil];    imgView.highlightedAnimationImages=animationImages;    imgView.animationImages=animationImages;    imgView.animationRepeatCount=2;    imgView.animationDuration=10;//    - (void)startAnimating;//    - (void)stopAnimating;//    - (BOOL)isAnimating;    [imgView startAnimating];    [self.view addSubview:imgView];     } - (void)didReceiveMemoryWarning {    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.} @end

转载地址:http://taooa.baihongyu.com/

你可能感兴趣的文章
《iOS组件与框架——iOS SDK高级特性剖析》——第2章,第2.7节获取线路
查看>>
Spring中 @Autowired标签与 @Resource标签 的区别
查看>>
人工智能凭什么毁灭人类
查看>>
[LeetCode]--349. Intersection of Two Arrays
查看>>
tomcat启动报错
查看>>
mongorocks引擎原理解析
查看>>
用Swift实现一款天气预报APP(一)
查看>>
oracle11g R2 RAC卸载grid
查看>>
ES6 结构和扩展运算符
查看>>
王利阳:电商大促 决战6.18
查看>>
kafka消息传输的事务定义
查看>>
实现LNMMP
查看>>
mysql的pid文件出现问题
查看>>
计算rem单位
查看>>
第七章 大网高级 ASA
查看>>
rsync+inotify触发式远程同步
查看>>
优秀设计师应当知道的几大UI设计原则(一)
查看>>
mongodb高级查询
查看>>
struts2.1 struts.devMode BUG解决方案
查看>>
日本法院裁定三星诉苹果专利侵权案败诉
查看>>