博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
滚动广告效果
阅读量:5082 次
发布时间:2019-06-13

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

CATransition *animation = [[CATransition alloc]init];    animation.type = kCATransitionFromTop;    animation.subtype = kCATransitionFromTop; //向上滚动,其他方向自己设置    animation.duration = 0.3;    [self.imageView.layer addAnimation:animation forKey:nil];    NSString *imageName = [NSString stringWithFormat:@"ad%ld.jpg",++currentIndex % 5 + 1];    UIImage *image = [UIImage imageNamed:imageName];    self.imageView.image = image;

 

转载于:https://www.cnblogs.com/yintingting/p/4676278.html

你可能感兴趣的文章
Golang之interface(多态,类型断言)
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Linear Algebra lecture 2 note
查看>>
CRC计算模型
查看>>
Ajax之404,200等查询
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
OO设计的接口分隔原则
查看>>
数据库连接字符串大全 (转载)
查看>>
java类加载和对象初始化
查看>>
对于负载均衡的理解
查看>>
django简介
查看>>
window.event在IE和Firefox的异同
查看>>
常见的js算法面试题收集,es6实现
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Windows10 下Apache服务器搭建
查看>>
HDU 5458 Stability
查看>>
左手坐标系和右手坐标系
查看>>
solr后台操作Documents之增删改查
查看>>