码迷,mamicode.com
首页 >  
搜索关键字:uiimageview    ( 965个结果
开发进阶07_Segmented Control_播放动画
Segmented Control selectedSegmentIndex:返回当前选中的索引,序号从0开始UIButton和UIImageView的区别1、显示图片 -》UIImageView只能显示一张图片(图片默认会填充整个UIImageView)image\setImage -》UIBut...
分类:其他好文   时间:2014-10-28 00:30:53    阅读次数:390
给UIImageView添加点击事件(转)
转自“http://blog.csdn.net/jwzbskywz/article/details/7699661”UIImageView *imageview1 = [[UIImageView alloc] initWithFrame:CGRectMake(125, 50, 229, 229)];...
分类:其他好文   时间:2014-10-27 12:23:21    阅读次数:216
ios关于uibutton内部结构
1 1> UIButton内部默认有个UIImageView、UILabel控件,可以分别用下面属性访问: 2 @property(nonatomic,readonly,retain) UIImageView *imageView; 3 @property(nonatomic,readonly,r....
分类:移动开发   时间:2014-10-21 15:20:44    阅读次数:186
评分系统(小星星,仿我要去旅行)
效果图:代码:- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. UIImageView *imageView=[[UIImageView ...
分类:其他好文   时间:2014-10-20 21:20:32    阅读次数:253
有关UIImageView+AFNetworking 下载图片的线程问题
今天写了一个demo,从服务器获取图片,然后显示在cell上,大家都知道cell的重用机制,当往下拉的时候,上面的cell遮住了,下面的cell就会重用被遮住的cell,贴代码: NSString *urlstring=[dict objectForKey:@"imagePath"]; NSU...
分类:编程语言   时间:2014-10-17 11:52:51    阅读次数:602
模仿汽车大全的点击一个按钮,会弹出多个按钮,同时,点击背景图,多个按钮动画返回的效果
刚开始运行的时候的效果图:点击ican图标后的效果图:RootViewController.h#import @interface RootViewController : UIViewController{ UIImageView *iCanImageView; UIImageView...
分类:其他好文   时间:2014-10-17 11:31:35    阅读次数:196
首页3张图片有动画效果
.h#import @interface RootViewController : UIViewController{ NSTimer *timer; UIImageView *imageView1; UIImageView *imageView2; UIImageView ...
分类:其他好文   时间:2014-10-16 15:33:02    阅读次数:131
UIImageView帧动画清除缓存图片,防止图片占用内存太多
我们在使用UIImageView帧动画时会碰到加载到内存的图片不会自动释放,占用很多的内存,这时我们可能使用 UIImage imageWithContentsOfFile 并配合 imageView.animationImages = nil; 来清理不用的缓存动画图片。具体如下: UIImageView帧动画相关属性和方法: 需要播放的序列帧图片数组(里面都是UIImage对象,会...
分类:其他好文   时间:2014-10-15 11:23:10    阅读次数:195
自定义TableViewCell
BookStoreCell.h#import @interface BookStoreCell : UITableViewCell@property (strong, nonatomic) UIImageView *bookImageView;@property (strong, nonatomic...
分类:其他好文   时间:2014-10-13 23:12:07    阅读次数:238
【iOS开发-45】Tom猫案例:动画、imageNamed与imageWithContentOfFile对内存影响、图片文件夹放哪儿以及文档注释
这里的帧动画核心是UIImageView对象的一个属性animationImages,这个属性里面是以数组形式存放的图片。当然还有个重要的方法startAnimating用来播放前面那个属性里面的图片,就形成动画。再当然一下,还有设置时间和播放次数的属性。...
分类:移动开发   时间:2014-10-13 19:31:47    阅读次数:304
965条   上一页 1 ... 86 87 88 89 90 ... 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!