簡單頂部標(biāo)題滾動條(swift)

標(biāo)題控件



//
//  PageTitleView.swift
//  標(biāo)題頭滑動
//
//  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.更新下標(biāo)
        index = targetIndex
    }
}

內(nèi)容控件


//
//  PageContentView.swift
//  標(biāo)題頭滑動
//
//  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) 目標(biāo)\(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)
    }
}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市脚曾,隨后出現(xiàn)的幾起案子厉膀,更是在濱河造成了極大的恐慌粱哼,老刑警劉巖回论,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件宅粥,死亡現(xiàn)場離奇詭異偎血,居然都是意外死亡志群,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門芭届,熙熙樓的掌柜王于貴愁眉苦臉地迎上來储矩,“玉大人,你說我怎么就攤上這事褂乍〕炙恚” “怎么了?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵逃片,是天一觀的道長屡拨。 經(jīng)常有香客問我,道長,這世上最難降的妖魔是什么呀狼? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任裂允,我火速辦了婚禮,結(jié)果婚禮上哥艇,老公的妹妹穿的比我還像新娘绝编。我一直安慰自己,他們只是感情好貌踏,可當(dāng)我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布十饥。 她就那樣靜靜地躺著,像睡著了一般哩俭。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上拳恋,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天凡资,我揣著相機(jī)與錄音,去河邊找鬼谬运。 笑死隙赁,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的梆暖。 我是一名探鬼主播伞访,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼轰驳!你這毒婦竟也來了厚掷?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤级解,失蹤者是張志新(化名)和其女友劉穎冒黑,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體勤哗,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡抡爹,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了芒划。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片冬竟。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖民逼,靈堂內(nèi)的尸體忽然破棺而出泵殴,到底是詐尸還是另有隱情,我是刑警寧澤拼苍,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布袋狞,位于F島的核電站,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏苟鸯。R本人自食惡果不足惜同蜻,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望早处。 院中可真熱鬧湾蔓,春花似錦、人聲如沸砌梆。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽咸包。三九已至桃序,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間烂瘫,已是汗流浹背媒熊。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留坟比,地道東北人芦鳍。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像葛账,于是被迫代替她去往敵國和親柠衅。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容