简单顶部标题滚动条(swift)

标题控件



//
//  PageTitleView.swift
//  标题头滑动
//
//  Created by Zhangguodong on 17/3/27.
//  Copyright © 2017年 ZGD. All rights reserved.
//

import UIKit
protocol PageTitleViewDelegate {
    func pageTitleView(pageTitleView:PageTitleView,selectedIndex index: Int) -> Void
}

// MARK:- 定义常量
private let kScrollLineH : CGFloat = 2
private let kNormalColor : (R:CGFloat, G:CGFloat, B:CGFloat) = (85, 85, 85)
private let kSelectColor : (R:CGFloat, G:CGFloat, B:CGFloat) = (255, 128, 0)

class PageTitleView: UIView {
    fileprivate var titles:[String]?
    init(frame: CGRect,titles:[String]) {
        super.init(frame: frame)
        backgroundColor = UIColor.orange
        self.titles = titles
        addChildView()
        
    }
    var delegate: PageTitleViewDelegate?
    
    fileprivate lazy var lables : [UILabel] = [UILabel]()
    var index: NSInteger = 0
    fileprivate  lazy var scrollView: UIScrollView = {
        let scrollView = UIScrollView(frame: self.bounds)
        scrollView.backgroundColor = UIColor.white
        scrollView.showsVerticalScrollIndicator = false
        return scrollView
    }()
    lazy var indicateLabel: UILabel = {
        let indicateLabel = UILabel()
        indicateLabel.backgroundColor = UIColor.randomColor()
        return indicateLabel
    }()
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}

extension PageTitleView {
    func addChildView() -> Void {
        addSubview(scrollView)
        addLables()
    }
    //MARK: 添加label和指示控件
    func addLables() -> Void {
        let labelW = scrollView.frame.size.width / 4.0
        let labelH = scrollView.frame.size.height - kScrollLineH
        for (index,name) in (titles?.enumerated())! {
            let label = UILabel(frame: CGRect(x: labelW * CGFloat(index), y: 0, width: labelW, height: labelH))
            label.text = name
            label.tag = index
            label.isUserInteractionEnabled = true
            label.textAlignment = .center
            label.backgroundColor = UIColor.white
            label.textColor = UIColor(r: kNormalColor.R, g: kNormalColor.G, b: kNormalColor.B)
            if index == 0 {
                label.textColor = UIColor(r: kSelectColor.R, g: kSelectColor.G, b: kSelectColor.B)
            }
            let tapGesture = UITapGestureRecognizer(target: self, action: #selector(tapAction(tap:)))
            label.addGestureRecognizer(tapGesture)
            self.lables.append(label)
            scrollView.addSubview(label)
        }
        indicateLabel.frame = CGRect(x: 0, y: scrollView.frame.size.height - kScrollLineH, width: labelW, height: kScrollLineH)
        scrollView.addSubview(indicateLabel)
    }
    func tapAction(tap: UITapGestureRecognizer) -> Void {
        let currentlabel = tap.view as! UILabel
        let currentIndex = currentlabel.tag
        if currentIndex == index {
           return
        }else {
            delegate?.pageTitleView(pageTitleView: self, selectedIndex: currentIndex)
            currentlabel.textColor = UIColor(r: kSelectColor.R, g: kSelectColor.G, b: kSelectColor.B)
            let lastLabel = self.lables[index]
            lastLabel.textColor = UIColor(r: kNormalColor.R, g: kNormalColor.G, b: kNormalColor.B)
            UIView.animate(withDuration: 0.5, animations: {
                self.indicateLabel.frame.origin.x = self.frame.size.width / 4.0 * CGFloat(currentIndex)
            })
        }
        index = currentIndex
    }
    
}
//MARK: 暴露的方法
extension PageTitleView {
    func setTitleWithProgress(progress:CGFloat,sourceIndex:Int,targetIndex:Int) -> Void {
        //1.取出sourceLabel/targetLabel
        let sourceLabel = lables[sourceIndex]
        let targetLabel = lables[targetIndex]
        // 2.处理滑块的逻辑
        let moveTotalX = targetLabel.frame.origin.x - sourceLabel.frame.origin.x
        let moveX = moveTotalX * progress
        indicateLabel.frame.origin.x = moveX + sourceLabel.frame.origin.x
        //3.颜色渐变
        let colorDelta = (kSelectColor.R - kNormalColor.R,kSelectColor.G - kNormalColor.G,kSelectColor.B - kNormalColor.B)
        sourceLabel.textColor = UIColor(r: kSelectColor.R - colorDelta.0 * progress, g: kSelectColor.G - colorDelta.1 * progress, b: kSelectColor.B - colorDelta.2 * progress)
        targetLabel.textColor = UIColor(r: kNormalColor.0 + colorDelta.0 * progress, g: kNormalColor.1 + colorDelta.1 * progress, b: kNormalColor.2 + colorDelta.2 * progress)
        //4.更新下标
        index = targetIndex
    }
}

内容控件


//
//  PageContentView.swift
//  标题头滑动
//
//  Created by Zhangguodong on 17/3/27.
//  Copyright © 2017年 ZGD. All rights reserved.
//

import UIKit
protocol PageContentViewDelegate {
    func pageContentView(pageContentView:PageContentView,progress:CGFloat,sourceIndex:Int,targetIndex:Int) -> Void
}
class PageContentView: UIView {
    var childVCs:[UIViewController]?
    var delegate: PageContentViewDelegate?
    //点击的时候禁止走代理方法(scrollViewDidScroll)
    var forbidDelegate = false
    init(frame: CGRect,childVCs:[UIViewController]) {
        super.init(frame: frame)
        backgroundColor = UIColor.randomColor()
        self.childVCs = childVCs
        addSubview(collectionview)
    }
    fileprivate var startOffsetX : CGFloat = 0
    lazy var collectionview: UICollectionView = {
        let layout = FlowLayout()
        let collectionview = UICollectionView(frame: self.bounds, collectionViewLayout: layout)
        collectionview.dataSource = self
        collectionview.delegate = self
        collectionview.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "cell")
        return collectionview
    }()
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}
extension PageContentView:UICollectionViewDelegate,UICollectionViewDataSource {
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return (self.childVCs?.count)!
    }
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath)
        let vc = self.childVCs?[indexPath.item]
        cell.contentView.addSubview((vc?.view)!)
        return cell
    }
}
//MARK: 判断左右
extension PageContentView {
    func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
        forbidDelegate = false
        startOffsetX = scrollView.contentOffset.x
    }
    func scrollViewDidScroll(_ scrollView: UIScrollView) {
        if forbidDelegate  {
            return
        }
    let currentOffsetX = scrollView.contentOffset.x
    
        var progress: CGFloat    = 0
        var sourceIndex:Int      = 0
        var targetIndex:Int      = 0
        let scrollViewW =  CGFloat(frame.size.width)
        
        if startOffsetX > currentOffsetX { //右 小
            // 1.计算progress
            progress = 1 - (currentOffsetX / scrollViewW - floor(currentOffsetX / scrollViewW))
            // 2.计算targetIndex
            targetIndex = Int(currentOffsetX / scrollViewW)
            
            // 3.计算sourceIndex
            sourceIndex = targetIndex + 1
            if sourceIndex >= (childVCs?.count)! {
                sourceIndex = (childVCs?.count)! - 1
            }
        }else {//左大
            // 1.计算progress
            progress = currentOffsetX / scrollViewW - floor(currentOffsetX / scrollViewW)
            
            // 2.计算sourceIndex
            sourceIndex = Int(currentOffsetX / scrollViewW)
            
            // 3.计算targetIndex
            targetIndex = sourceIndex + 1
            if targetIndex >= (childVCs?.count)! {
                targetIndex = (childVCs?.count)! - 1
            }
            
            // 4.如果完全划过去
            if currentOffsetX - startOffsetX == scrollViewW {
                progress = 1
                targetIndex = sourceIndex
            }

        }
        delegate?.pageContentView(pageContentView: self, progress: progress, sourceIndex: sourceIndex, targetIndex: targetIndex)
//        print(" progress = \(progress) 开始 \(sourceIndex) 目标\(targetIndex)")
    }
}
//MARK: 对外暴露的方法
extension PageContentView {
    func setCurrentIndex(currentIndex:NSInteger) -> Void {
        let indetPath = IndexPath(item: currentIndex, section: 0)
        forbidDelegate = true
        collectionview.selectItem(at: indetPath, animated: false, scrollPosition: .centeredHorizontally)
    }
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,671评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,442评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,524评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,623评论 1 275
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,642评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,584评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,953评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,621评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,865评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,608评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,698评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,378评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,958评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,940评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,173评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,419评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,425评论 2 342

推荐阅读更多精彩内容