之前写过oc版本的无限滚动轮播图,现在来一个swift版本全部使用snapKit布局,数字还是pageConrrol样式可选

enum typeStyle: Int {
case pageControl
case label
}

效果图:

代码:

//
// TYCarouselView.swift
// hxquan-swift
//
// Created by Tiny on 2018/11/12.
// Copyright © 2018年 hxq. All rights reserved.
// 轮播图 import UIKit let ImgPlaceHolder = UIImage(named: "picture") enum typeStyle: Int {
case pageControl
case label
} class TYCarouselCell: UICollectionViewCell { var url: String = ""{
didSet{
let cacheImg = SDImageCache.shared().imageFromDiskCache(forKey: url)
imgView.contentMode = .center
imgView.sd_setImage(with: URL(string: url),placeholderImage:cacheImg ?? ImgPlaceHolder) { [unowned self] (image, error, _, _) in
if image != nil && error == nil{
self.imgView.contentMode = .scaleAspectFill
}
}
}
} lazy var imgView: UIImageView = {
let imgView = UIImageView()
imgView.layer.masksToBounds = true
imgView.contentMode = .center
imgView.image = ImgPlaceHolder
return imgView
}() override init(frame: CGRect) {
super.init(frame: frame)
setupUI()
} required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
setupUI()
} func setupUI(){
contentView.addSubview(imgView) imgView.snp.makeConstraints { (make) in
make.edges.equalToSuperview()
}
}
} class TYCarouselView: UIView { var style: typeStyle = .pageControl{
didSet{
if style == .pageControl{
if pageControl.superview == nil{
addSubview(pageControl)
pageControl.snp.makeConstraints { (make) in
make.centerX.equalToSuperview()
make.bottom.equalToSuperview().offset(-10)
}
}
if label.superview != nil{
label.removeFromSuperview()
}
}else{
if label.superview == nil{
addSubview(label)
label.snp.makeConstraints { (make) in
make.right.equalToSuperview().offset(-20)
make.bottom.equalToSuperview().offset(-20)
}
}
if pageControl.superview != nil{
pageControl.removeFromSuperview()
}
}
}
} /// 定时器是否开启
var isTimerEnable = true fileprivate let maxsection: Int = 100 /// 滚动间隔
public let scroInterval: TimeInterval = 4 private var selectonBlock: ((Int)->Void)? public var images = [String]() {
didSet{
//重写images set方法
//更新数据源
collectionView.reloadData()
if style == .pageControl {
pageControl.numberOfPages = images.count
}else{
if oldValue.count == 0{
label.attributedText = labelAttrText(1)
}
label.isHidden = images.count == 0
}
if isTimerEnable && !images.isEmpty{
timerStart()
}
}
} lazy var pageControl: UIPageControl = {
let pageControl = UIPageControl()
pageControl.sizeToFit()
return pageControl
}() lazy var label: UILabel = {
let label = UILabel()
label.font = UIFont.systemFont(ofSize: 12)
label.textColor = UIColor.white
label.attributedText = labelAttrText(0)
label.isHidden = true
return label
}() fileprivate lazy var collectionView: UICollectionView = { [unowned self] in
let layout = UICollectionViewFlowLayout()
layout.scrollDirection = .horizontal
layout.minimumLineSpacing = 0
layout.minimumInteritemSpacing = 0
layout.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
let collectionView = UICollectionView(frame: .zero, collectionViewLayout: layout)
collectionView.backgroundColor = UIColor.white
collectionView.showsVerticalScrollIndicator = false
collectionView.showsHorizontalScrollIndicator = false
collectionView.delegate = self
collectionView.dataSource = self
collectionView.isPagingEnabled = true
collectionView.register(TYCarouselCell.self, forCellWithReuseIdentifier: "TYCarouselCell") return collectionView
}() fileprivate lazy var timer: Timer = { [unowned self] in
let timer = Timer(timeInterval: scroInterval, target: self, selector: #selector(timerInterval), userInfo: nil, repeats: true)
RunLoop.current.add(timer, forMode: .common)
return timer
}() override init(frame: CGRect) {
super.init(frame: frame)
setupUI()
} convenience init(frame: CGRect,selectonBlock: ((Int)->Void)?){
self.init(frame: frame)
self.selectonBlock = selectonBlock
} required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
} private func setupUI(){
addSubview(collectionView)
collectionView.snp.makeConstraints { (make) in
make.edges.equalToSuperview()
} addSubview(pageControl)
pageControl.snp.makeConstraints { (make) in
make.bottom.equalToSuperview().offset(-10)
make.centerX.equalToSuperview()
}
} @objc func timerInterval(){
//取当前idnexPath
if let currentIndexPath = collectionView.indexPathsForVisibleItems.last{
//先让collectionViev滚动到中间
let currentIndexPathReset = IndexPath(row: currentIndexPath.row, section: maxsection/2)
collectionView.scrollToItem(at: currentIndexPathReset, at: .left, animated: false) //让当前indexPath.row++
var row = currentIndexPath.row + 1
var nextsection = currentIndexPathReset.section
if row >= images.count{
row = 0
nextsection = nextsection + 1
}
if style == .pageControl {
pageControl.currentPage = row
}else{
label.attributedText = labelAttrText(row+1)
}
let nextIndexPath = IndexPath(row: row, section:nextsection)
collectionView.scrollToItem(at: nextIndexPath, at: .left, animated: true)
}
} private func timerStart(){
if !timer.isValid {
timer.fire()
}
} private func timerPause(){
if timer.isValid {
timer.invalidate()
}
} private func labelAttrText(_ index: Int) -> NSAttributedString{
let lf = "\(index)"
let rt = "\(images.count)"
let str = lf + "/" + rt
let attr = NSMutableAttributedString(string: str)
attr.setAttributes([NSAttributedString.Key.foregroundColor : UIColor.red], range: NSRange(location: 0, length: 1))
return attr
}
} extension TYCarouselView: UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout{ func numberOfSections(in collectionView: UICollectionView) -> Int {
return maxsection
} func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return images.count
} func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "TYCarouselCell", for: indexPath) as! TYCarouselCell
cell.url = images[indexPath.row]
return cell
} func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: self.bounds.size.width, height: self.bounds.size.height)
} func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
selectonBlock?(indexPath.row)
} //结束滚动
func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
let index = Int(scrollView.contentOffset.x / self.bounds.size.width + 0.5) % images.count
if style == .pageControl {
pageControl.currentPage = index
}else{
label.attributedText = labelAttrText(index+1)
}
if(isTimerEnable){
//定时器启动
if timer.isValid {
timer.fireDate = Date.init(timeIntervalSinceNow: scroInterval)
}
}
} //拖动
func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
if isTimerEnable{
//定时器暂停
if timer.isValid {
timer.fireDate = Date.distantFuture
}
}
}
}

使用方法:

    lazy var carouselView: TYCarouselView = { [unowned self] in
let carouselView = TYCarouselView(frame: .zero, selectonBlock: { (index) in
print("\(index)")
})
carouselView.style = .label
carouselView.layer.masksToBounds = true
carouselView.layer.cornerRadius = 10
return carouselView
}() override func viewDidLoad() {
super.viewDidLoad()
//添加到父视图
view.addSubview(carouselView)
//设置约束
carouselView.snp.makeConstraints { (make) in
make.left.equalTo(15)
make.right.equalTo(-15)
make.top.equalTo(10)
make.height.equalTo(170)
}
//设置数据源
var imgs = [String]()
for _ in 0..<5{
imgs.append("图url")
}
self.carouselView.images = imgs
}

iOS swift版本无限滚动轮播图的更多相关文章

  1. js原生选项卡(自动播放无缝滚动轮播图)二

    今天分享一下自动播放轮播图,自动播放轮播图是在昨天分享的轮播图的基础上添加了定时器,用定时器控制图片的自动切换,函数中首先封装一个方向的自动播放工能的小函数,这个函数中添加定时器,定时器中可以放向右走 ...

  2. JavaScript+HTML+CSS 无缝滚动轮播图的两种方式

    第一种方式 在轮播图最后添加第一张,一张重复的图片. 点击前一张,到了第一张,将父级oList移动到最后一张(也就是添加的重复的第一张),在进行后续动画. 点击下一张,到了最后一张(也就是添加的重复的 ...

  3. android-auto-scroll-view-pager (无限广告轮播图)

    github 地址: https://github.com/Trinea/android-auto-scroll-view-pager Gradle: compile ('cn.trinea.andr ...

  4. js原生选项卡(包含无缝滚动轮播图)一

    原生js选项卡的几种写法,整片文章我会由简及难的描述几种常用的原生选项卡的写法: Improve little by little every day! 1>基本选项卡: 思路:循环中先清除再添 ...

  5. jquery左右切换的无缝滚动轮播图

    1.HTML结构: <head> <script type="text/javascript" src="../jquery-1.8.3/jquery. ...

  6. 无限循环轮播图之JS部分(原生JS)

    JS逻辑与框架调用, <script type="text/javascript"> var oBox = document.getElementById('box') ...

  7. 无限循环轮播图之结构布局(原生JS)

    html部分 <div class="box" id="box"> <ul> <li><img src="i ...

  8. 无限循环轮播图之运动框架(原生JS)

    封装运动框架 function getStyle(obj,name){ if(obj.currentStyle){ return obj.currentStyle[name]; }else{ retu ...

  9. 从零开始学习前端JAVASCRIPT — 11、JavaScript运动模型及轮播图效果、放大镜效果、自适应瀑布流

    未完待续...... 一.运动原理 通过连续不断的改变物体的位置,而发生移动变化. 使用setInterval实现. 匀速运动:速度值一直保持不变. 多物体同时运动:将定时器绑设置为对象的一个属性. ...

随机推荐

  1. linux的打包与解压

    zip: 打包 :zip something.zip something (目录请加 -r 参数) 解包:unzip something 指定路径:-d 参数 创建加密 zip 包 使用 -e 参数可 ...

  2. linux之cat,more,less,head,tail

    http://lionbule.iteye.com/blog/663549 1.cat # cat /etc/profile 注:查看/etc/目录下的profile文件内容: # cat -b /e ...

  3. Matlab中向量场的绘制

    % quiver(x,y,u,v) % x,y是包含坐标位置的矩阵,而u和v则是包含偏导数的矩阵. % 例如绘制f(x,y)=y-3x-2x^2-3xy-3y^2的方法: % 先用gradient函数 ...

  4. 【js】判断浏览器是否IE浏览器

    搜罗各种方法来判断浏览器是否为IE浏览器 1.最简单的[来自:http://www.cnblogs.com/heganlin/p/5889743.html] if(!+[1,]){ layer.msg ...

  5. 百度display name为中文导致奔溃,productName和budlename区分出来

    把"xxx-info.plist"中的"Bundle display name"的值改成了英文,或者把它的值修改成系统默认的"${PRODUCT_NA ...

  6. 设置cookie和查找cookie的方法

    1.设置cookie(名称,值,过期时间) function setCookie(key,value,d){ if(d === undefined){ document.cookie = encode ...

  7. hibernate CascadeType属性

    CascadeType.PERSIST 只有A类新增时,会级联B对象新增.若B对象在数据库存(跟新)在则抛异常(让B变为持久态) : 级联保存,当调用了Persist() 方法,会级联保存相应的数据 ...

  8. iOS:Xcode中SVN不能提交CocoaPods中的.a文件的解决方法

    不能提交.a文件, 这个与SVN的配置有关, 其实与xcode倒没有关系. 解决方法: 1. 打开终端,  在命令行中输入: vi ~/.subversion/config  来打开配置文件.2. 然 ...

  9. MongoDB分片集群新增分片(自用)

    机器IP为192.168.58.11,计划在上面新建两个分片并添加到原有分片集群中. 实施如下: 1.58.11创建mongodb文件夹 mkdir -p /opt/mongodb cd  /opt/ ...

  10. MongoDB mongoimport 报错:lost connection to server

    MongoDB对单次处理有大小限制,所以导入大文件会出问题. mongoimport 默认10000条 为一批导入,但如果单条数据过大,就会导致单次处理数据超过大小限制. 参数 --batchSize ...