swift 广告轮播图
import UIKit
import Kingfisher class BannerView: UIView,UIScrollViewDelegate{ enum ImageType{
case Image //本地图片
case URL //URL
} //图片水平放置到scrollView上
private var scrollView:UIScrollView = UIScrollView()
//小圆点标识
private var pageControl:UIPageControl = UIPageControl() private var center_image:UIImageView = UIImageView()
private var first_image:UIImageView = UIImageView()
private var second_image:UIImageView = UIImageView()
//图片集合
private var images:Array<String> = []
private var type:ImageType = .Image private var width:CGFloat = 0
private var height:CGFloat = 0 private var currIndex = 0
private var clickBlock :(Int)->Void = {index in} private var timer:Timer? // 默认自动播放 设置为false只能手动滑动
var isAuto = true
// 轮播间隔时间 默认4秒可以自己修改
var interval:Double = 4 override func layoutSubviews() {
super.layoutSubviews()
// self.initLayout()
} public func setImages(images:Array<String>,type:ImageType = .Image,imageClickBlock:@escaping (Int) -> Void) {
self.type = type
self.images = images
self.clickBlock = imageClickBlock
self.initLayout()
} private func initLayout(){
if(self.images.count == 0){
return
} width = frame.size.width
height = frame.size.height scrollView.frame = self.bounds
scrollView.contentSize = CGSize(width:width * CGFloat(3),height:height)
scrollView.contentOffset = CGPoint(x:width,y:0)
scrollView.isUserInteractionEnabled = true
scrollView.isPagingEnabled = true
scrollView.showsHorizontalScrollIndicator = false
scrollView.delegate = self
addSubview(scrollView) first_image.frame = CGRect(x:0,y:0,width:width,height:height)
first_image.contentMode = .scaleAspectFill
first_image.isUserInteractionEnabled = true
scrollView.addSubview(first_image) center_image.frame = CGRect(x:width,y:0,width:width,height:height)
center_image.contentMode = .scaleAspectFill
center_image.isUserInteractionEnabled = true
scrollView.addSubview(center_image) second_image.frame = CGRect(x:width * 2.0,y:0,width:width,height:height)
second_image.contentMode = .scaleAspectFill
second_image.isUserInteractionEnabled = true
scrollView.addSubview(second_image) pageControl.center = CGPoint(x:width/2,y:height - CGFloat(15))
pageControl.isEnabled = true
pageControl.numberOfPages = images.count
pageControl.currentPageIndicatorTintColor = UIColor.green
pageControl.pageIndicatorTintColor = UIColor.gray
pageControl.isUserInteractionEnabled = false
addSubview(pageControl) //当前显示的只有 center_image 其他两个只是用来增加滑动时效果而已,不需要添加点击事件
addTapGesWithImage(image: center_image)
if(isAuto){
openTimer()
}
setCurrent(currIndex: 0)
} func setCurrent(currIndex:Int) {
self.currIndex = currIndex if(type == .Image){
center_image.image = UIImage.init(named:images[currIndex])
first_image.image = UIImage.init(named:images[(currIndex - 1 + images.count) % images.count])
second_image.image = UIImage.init(named:images[(currIndex + 1) % images.count])
}else{
center_image.setMyImage(URL: NSURL(string: images[currIndex]))
first_image.setMyImage(URL: NSURL(string: images[(currIndex - 1 + images.count) % images.count]))
second_image.setMyImage(URL: NSURL(string: images[(currIndex + 1) % images.count]))
}
center_image.tag = currIndex
pageControl.currentPage = currIndex
scrollView.setContentOffset(CGPoint(x:width,y:0), animated: false)
} //给图片添加点击手势
private func addTapGesWithImage(image:UIImageView) {
let tap = UITapGestureRecognizer(target: self, action: #selector(tap(_:)))
image.isUserInteractionEnabled = true //让控件可以触发交互事件
image.contentMode = .scaleAspectFill
image.clipsToBounds = true //超出父控件的部分不显示
image.addGestureRecognizer(tap)
} //点击图片,调用block
@objc func tap(_ ges:UITapGestureRecognizer) {
clickBlock((ges.view?.tag)!)
} func scrollViewDidScroll(_ scrollView: UIScrollView) { } func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
closeTimer()
} func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) {
openTimer()
} func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
if(scrollView.contentOffset.x > 0){
currIndex = (currIndex + 1) % images.count
}else{
currIndex = (currIndex - 1 + images.count) % images.count
}
setCurrent(currIndex: currIndex)
} func openTimer(){
if(isAuto){
if(timer == nil){
timer = Timer.scheduledTimer(timeInterval: interval, target: self, selector: #selector(startAutoScroll), userInfo: nil, repeats: true)
} }
} func closeTimer(){
if(timer != nil){
timer?.invalidate()
timer = nil
}
} @objc func startAutoScroll(){
if(isDisplayInScreen()){
setCurrent(currIndex: (currIndex + 1) % images.count)
}
} func isDisplayInScreen() -> Bool{
if(self.window == nil){
return false
}
return true
} } extension UIImageView{
// Kingfisher的覆盖 好处:1.不用所有界面都去导入 2.如果KingfisherAPI更新或者更换图片加载库可以更方便一些,保持方法名和第一个参数不变,修改一下就能达到目的,比如修改为使用SDWebImage
public func setMyImage(URL: NSURL?,placeholderImage: Image? = nil,
optionsInfo: KingfisherOptionsInfo? = nil,
progressBlock: DownloadProgressBlock? = nil,
completionHandler: CompletionHandler? = nil){
kf.setImage(with: URL as? Resource,
placeholder: placeholderImage,
options: optionsInfo,
progressBlock: progressBlock,
completionHandler: completionHandler)
}
}
使用方法
@IBOutlet weak var bannerView: BannerView!
bannerView.setImages(images: ["ad01.jpg","ad02.jpg","ad03.jpg","ad04.jpg"]){ (index) in
print(index)
}
swift 广告轮播图的更多相关文章
- iOS回顾笔记(05) -- 手把手教你封装一个广告轮播图框架
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,bi ...
- 初识 swift 封装轮播图
一.简介 换了一家公司.换了一个环境刚开始来公司自然不能有一丝一毫的放松,每天即使是没有什么工作也是看看这个博客.那个源码.尽量让自己更充实.慢慢的开始写几篇博客记录下自己遇到的一些问题和解决方法.其 ...
- JavaScripts广告轮播图以及定时弹出和定时隐藏广告
轮播图: 函数绑定在body标签内 采用3张图,1.jpg 2.jpg 3.jpg 利用定时任务执行设置图片属性 src 利用for循环可以完成3秒一次 一替换. 定时弹出广告: 由于bod ...
- android中广告轮播图总结
功能点:无限轮播.指示点跟随.点击响应.实现思路: 1.指示点跟随,指示点通过代码动态添加,数量由图片数量决定. 在viewpager的页面改变监听中,设置点的状态选择器enable,当前页时,set ...
- jquery 广告轮播图
轮播图 /*轮播图基本功能: * 1图片切换 * 1.1图片在中间显示 * 1.2图片淡入淡出 * 2左右各有一个按钮 * 2.1点击左按钮,图片切换上一张 * 2.2点击右按钮,图片切换下一张 * ...
- swift bannerview 广告轮播图
class BannerView: UIView,UIScrollViewDelegate{ //图⽚⽔平放置到scrollView上 private var scrollView:UIScrollV ...
- android-auto-scroll-view-pager (无限广告轮播图)
github 地址: https://github.com/Trinea/android-auto-scroll-view-pager Gradle: compile ('cn.trinea.andr ...
- Android广告轮播图实现
先看效果 第一步,布局 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmln ...
- Android开发之ViewPager实现轮播图(轮播广告)效果的自定义View
最近开发中需要做一个类似京东首页那样的广告轮播效果,于是采用ViewPager自己自定义了一个轮播图效果的View. 主要原理就是利用定时任务器定时切换ViewPager的页面. 效果图如下: 主页面 ...
随机推荐
- <ReversingEngineering>关于windows32位系统下的dll注入技术经验汇
上个学期把自己闷在图书馆一直在看关于逆向工程技术方面的书,从入门到初级,现在也敢说自己一条腿已经迈进了这片知识的大门里,因为该博客刚开通先将一些经验记录下来,也是留给自己一方面做个参照. <逆向 ...
- HDU3811 Permutation —— 状压DP
题目链接:https://vjudge.net/problem/HDU-3811 Permutation Time Limit: 6000/3000 MS (Java/Others) Memor ...
- winform中通过事件实现窗体传值思路【待修改】
Form2向Form1传值 private Form1 form1;//定义一个类型为Form1类型的字段,用于存储传递过来的Form对象 public void Se ...
- 51nod 1225
题目 题解:看数据范围就估计是根号算法.考虑我们要求的式子: $ \sum\limits_{i = 1}^n {n - \left\lfloor {\frac{n}{i}} \right\rfloor ...
- MysqL的root用户不允许远程连接,只能通过PHPMYADMIN
解决方法:1.改表法 可能是你的帐号不允许从远程登陆,只能在localhost.这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 &q ...
- 最近火狐浏览器 总是“插件 adobe flash 已崩溃”
原因和解决方案:在地址栏中输入:about:addons>在如下地方发现firefox已经在警告该插件的安全性了>选择“总不激活”
- Codeplus2017 12月赛——可做题1
题目:https://www.luogu.org/problemnew/show/P4030 可以发现一个矩阵是巧妙矩阵当且仅当其所有二阶子矩阵都是巧妙矩阵: 将不巧妙的二阶矩阵计为1,维护二维前缀和 ...
- linux 中C语言便于调试的宏定义编写及 __FILE__,__FUNCTION__, __LINE__参数使用
转自:http://blog.csdn.net/edonlii/article/details/8491342/ 在linux编程中,当文件数量变的众多之后,使用gdb调试就是一场灾难.因此在程序中加 ...
- 从0起步 BI 第一课
收集 BI 学习资料(了解,书籍,示例demo) 专业人士: http://www.cnblogs.com/aspnetx/p/3189029.html http://www.flybi.net/ h ...
- repackage android application
decompile the application file apktool d -o dianping/ dianping.apk modify the resources / smali asse ...