iOS swift版本无限滚动轮播图
之前写过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版本无限滚动轮播图的更多相关文章
- js原生选项卡(自动播放无缝滚动轮播图)二
今天分享一下自动播放轮播图,自动播放轮播图是在昨天分享的轮播图的基础上添加了定时器,用定时器控制图片的自动切换,函数中首先封装一个方向的自动播放工能的小函数,这个函数中添加定时器,定时器中可以放向右走 ...
- JavaScript+HTML+CSS 无缝滚动轮播图的两种方式
第一种方式 在轮播图最后添加第一张,一张重复的图片. 点击前一张,到了第一张,将父级oList移动到最后一张(也就是添加的重复的第一张),在进行后续动画. 点击下一张,到了最后一张(也就是添加的重复的 ...
- android-auto-scroll-view-pager (无限广告轮播图)
github 地址: https://github.com/Trinea/android-auto-scroll-view-pager Gradle: compile ('cn.trinea.andr ...
- js原生选项卡(包含无缝滚动轮播图)一
原生js选项卡的几种写法,整片文章我会由简及难的描述几种常用的原生选项卡的写法: Improve little by little every day! 1>基本选项卡: 思路:循环中先清除再添 ...
- jquery左右切换的无缝滚动轮播图
1.HTML结构: <head> <script type="text/javascript" src="../jquery-1.8.3/jquery. ...
- 无限循环轮播图之JS部分(原生JS)
JS逻辑与框架调用, <script type="text/javascript"> var oBox = document.getElementById('box') ...
- 无限循环轮播图之结构布局(原生JS)
html部分 <div class="box" id="box"> <ul> <li><img src="i ...
- 无限循环轮播图之运动框架(原生JS)
封装运动框架 function getStyle(obj,name){ if(obj.currentStyle){ return obj.currentStyle[name]; }else{ retu ...
- 从零开始学习前端JAVASCRIPT — 11、JavaScript运动模型及轮播图效果、放大镜效果、自适应瀑布流
未完待续...... 一.运动原理 通过连续不断的改变物体的位置,而发生移动变化. 使用setInterval实现. 匀速运动:速度值一直保持不变. 多物体同时运动:将定时器绑设置为对象的一个属性. ...
随机推荐
- SQL SERVER 常用命令
红色为常用 0.row_number() over 和数据组合sale/cnt select *,row_number() over(order by productname) as rownumbe ...
- WebStorm中部署网页到Tomcat
1. 新建一个Deployment 在上面过程中Add Server弹窗下如下输入 2. 配置Deployment的Connection选项卡 3. 配置Deployment的Mappings选项卡 ...
- ZooKeeper服务器是用Java创建的,它在JVM上运行。
ZooKeeper服务器是用Java创建的,它在JVM上运行. 创建配置文件 使用命令 vi conf/zoo.cfg 和所有以下参数设置为起点,打开名为 conf/zoo.cfg 的配置文件. $ ...
- Coherence生产环境异常定位过程
8月1日前广西发生了一次地震, 8月份前又发生了好几次台风,估计对地下的光缆有点损害(比如5根断了2根之类),感觉家里的网速都慢了好多,在客户那里部署的coherence缓存环境也出现了问题,两台hp ...
- django+celery+redis实现运行定时任务
0.目的 在开发项目中,经常有一些操作时间比较长(生产环境中超过了nginx的timeout时间),或者是间隔一段时间就要执行的任务. 在这种情况下,使用celery就是一个很好的选择. cele ...
- [Python爬虫] 之十八:Selenium +phantomjs 利用 pyquery抓取电视之家网数据
一.介绍 本例子用Selenium +phantomjs爬取电视之家(http://www.tvhome.com/news/)的资讯信息,输入给定关键字抓取资讯信息. 给定关键字:数字:融合:电视 抓 ...
- Android实现二维码扫描登录网页
之前写过一个二维码扫描demo,用的Zxing的框架,点击下载.兴许扫描二维码中出现一些问题,比方解决压缩图片.调整扫描窗体大小等等. 兴许单位要求做扫描登录实现,发现难点就是怎么知道你扫描的 ...
- 2017.11.21 查询某个字段为null的记录
注意,不使用 = null, 而是 is null. select fd_username, fd_tenantid, fd_validity from t_user WHERE fd_validit ...
- Shortest Path [3]
-----------应要求删除---------------
- Django的信号机制详解
Django提供一种信号机制.其实就是观察者模式,又叫发布-订阅(Publish/Subscribe) .当发生一些动作的时候,发出信号,然后监听了这个信号的函数就会执行. Django内置了一些信号 ...