UITableView上下輪播

思路借鑒demo,我索性改造成了swift版本的。
https://github.com/login?return_to=%2Fzhouxubin%2FXBLoopLabel

具體調(diào)用代碼:

class ThirdVC: UIViewController {
    
    var dataSouece : [String] = ["111","3333","dasd"]
    
    var loopV : TextLoopV!
    
    override func viewDidLoad() {
        super.viewDidLoad()

        // Do any additional setup after loading the view.
        
        loopV = TextLoopV.textLoopView(with: dataSouece, loopInterval: 3.0, initWithFrame: CGRect.init(x: 0, y: 100, width: 300, height: 100)) { (a, ind) in
            prints(a,ind)
        }
        
        view.addSubview(loopV)
    }
}

實現(xiàn)代碼:

class TextLoopV: UIView,UITableViewDelegate,UITableViewDataSource {
    
    /// 定義閉包
    typealias sendValueClosure = (_ sendString: String,_ index : Int) -> Void//聲明
    
    /// 回調(diào)
    var callBackString: sendValueClosure?//持有
    
    /// 數(shù)據(jù)源
    var dataSource : [String] = [String]()
    
    /// 表格
    var tableView : UITableView!
    
    /// 累加索引
    var currentRowIndex : Int = 0
    
    /// 自動幾秒時間
    var interval : TimeInterval {
        
        get {
            return 1.0
        }
        set {

            let timer = Timer.scheduledTimer(timeInterval: interval, target: self, selector: #selector(timerStuff), userInfo: nil, repeats: true)
            self.timer = timer
        }
    }
    
    var timer : Timer!
    
    /// 定時器做的事
    @objc private func timerStuff() {
        prints(self.currentRowIndex)
        self.currentRowIndex += 1
        self.tableView.setContentOffset(CGPoint.init(x: 0, y: CGFloat(self.currentRowIndex) * self.tableView.rowHeight), animated: true)
    }
    
    

    /// 初始化上下滾動的視圖
    ///
    /// - Parameters:
    ///   - dataSource: 數(shù)據(jù)源
    ///   - timeInterval: 時間間隔
    ///   - frame: 容器大小
    ///   - selectBlock: 傳回的閉包
    /// - Returns: 返回本身
    class func textLoopView(with dataSource: [String], loopInterval timeInterval: TimeInterval, initWithFrame frame: CGRect, select selectBlock: @escaping sendValueClosure) -> TextLoopV {
        let loopV = TextLoopV.init(frame: frame)
        loopV.dataSource = dataSource
        loopV.interval = timeInterval
        loopV.callBackString = selectBlock
        return loopV
    }
    
    override init(frame: CGRect) {
        super.init(frame: frame)
        self.tableView = UITableView.init(frame: CGRect.init(x: 0, y: 0, width: frame.width, height: frame.height))
        self.tableView.delegate = self
        self.tableView.dataSource = self
        self.tableView.separatorStyle = .none
        self.tableView.layer.borderWidth = 1
        self.tableView.rowHeight = frame.height
        self.tableView.zdx_register(TextLoopCell.classForCoder())
        self.addSubview(self.tableView)
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    
    //MARK:scrollView代理
    func scrollViewDidEndScrollingAnimation(_ scrollView: UIScrollView) {
        if self.currentRowIndex == self.dataSource.count {
            self.currentRowIndex = 0
            self.tableView.setContentOffset(CGPoint.zero, animated: false)
        }
    }
    
    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        tableView.deselectRow(at: indexPath, animated: true)
        
        if self.callBackString != nil {
            self.callBackString!(self.dataSource[indexPath.row],indexPath.row)
        }
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.zdx_dequeueReusableCell(indexPath: indexPath) as TextLoopCell
        cell.ddd.text = self.dataSource[indexPath.row]
        return cell
    }
    
    func numberOfSections(in tableView: UITableView) -> Int {
        return 2
    }
    
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return self.dataSource.count
    }
}

自定義的表格單元格cell:

class TextLoopCell: CommonTableViewCell {
    
    var ddd : UILabel!
    
    var baseIMg : BaseUIImageView!
    
    override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
        super.init(style: .default, reuseIdentifier: reuseIdentifier)
        
        ddd = UILabel.init(frame: frame)
        baseIMg = BaseUIImageView.init(CGRect.init(x: frame.midX, y: frame.midY, width: frame.width / 2, height: frame.height / 2), #imageLiteral(resourceName: "default"))
        contentView.addSubview(ddd)
        contentView.addSubview(baseIMg)
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}

1.有幾個注意點:oc 定義變量后瞒津,會默認持有setter和getter方法卢未。
swift對應(yīng)的是set 匆骗、get卿捎。
http://www.reibang.com/p/87fc570e44df

2.再則,就是swift中閉包的定義注意视搏。
http://www.reibang.com/p/5a3fd872257e

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末审孽,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子浑娜,更是在濱河造成了極大的恐慌佑力,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,948評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件筋遭,死亡現(xiàn)場離奇詭異打颤,居然都是意外死亡,警方通過查閱死者的電腦和手機漓滔,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,371評論 3 385
  • 文/潘曉璐 我一進店門编饺,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人响驴,你說我怎么就攤上這事透且。” “怎么了豁鲤?”我有些...
    開封第一講書人閱讀 157,490評論 0 348
  • 文/不壞的土叔 我叫張陵秽誊,是天一觀的道長。 經(jīng)常有香客問我琳骡,道長锅论,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,521評論 1 284
  • 正文 為了忘掉前任楣号,我火速辦了婚禮最易,結(jié)果婚禮上怒坯,老公的妹妹穿的比我還像新娘。我一直安慰自己耘纱,他們只是感情好敬肚,可當我...
    茶點故事閱讀 65,627評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著束析,像睡著了一般。 火紅的嫁衣襯著肌膚如雪憎亚。 梳的紋絲不亂的頭發(fā)上员寇,一...
    開封第一講書人閱讀 49,842評論 1 290
  • 那天,我揣著相機與錄音第美,去河邊找鬼蝶锋。 笑死,一個胖子當著我的面吹牛什往,可吹牛的內(nèi)容都是我干的扳缕。 我是一名探鬼主播,決...
    沈念sama閱讀 38,997評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼别威,長吁一口氣:“原來是場噩夢啊……” “哼躯舔!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起省古,我...
    開封第一講書人閱讀 37,741評論 0 268
  • 序言:老撾萬榮一對情侶失蹤粥庄,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后豺妓,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體惜互,經(jīng)...
    沈念sama閱讀 44,203評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,534評論 2 327
  • 正文 我和宋清朗相戀三年琳拭,在試婚紗的時候發(fā)現(xiàn)自己被綠了训堆。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,673評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡白嘁,死狀恐怖坑鱼,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情权薯,我是刑警寧澤姑躲,帶...
    沈念sama閱讀 34,339評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站盟蚣,受9級特大地震影響黍析,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜屎开,卻給世界環(huán)境...
    茶點故事閱讀 39,955評論 3 313
  • 文/蒙蒙 一阐枣、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦蔼两、人聲如沸甩鳄。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,770評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽妙啃。三九已至,卻和暖如春俊戳,著一層夾襖步出監(jiān)牢的瞬間揖赴,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,000評論 1 266
  • 我被黑心中介騙來泰國打工抑胎, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留燥滑,地道東北人。 一個月前我還...
    沈念sama閱讀 46,394評論 2 360
  • 正文 我出身青樓阿逃,卻偏偏與公主長得像铭拧,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子恃锉,可洞房花燭夜當晚...
    茶點故事閱讀 43,562評論 2 349

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

  • 1搀菩、通過CocoaPods安裝項目名稱項目信息 AFNetworking網(wǎng)絡(luò)請求組件 FMDB本地數(shù)據(jù)庫組件 SD...
    陽明先生_X自主閱讀 15,969評論 3 119
  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫、插件淡喜、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,066評論 4 62
  • 攏來塞外雪 遙望雁晴天 撥枝尋廣處 堆雪伴葉眠
    水搖絹閱讀 140評論 0 1
  • 在這個世界上秕磷,凡是有生命的人都無法逃避死亡。無論你多么渴望活著炼团,總有一天會被命運之手推向死亡澎嚣,并且無力反抗∥林ィ“時間...
    lee左閱讀 169評論 0 0