Swift - UITableView状态切换效果
生活随笔
收集整理的這篇文章主要介紹了
Swift - UITableView状态切换效果
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Swift - UITableView狀態切換效果
?
效果
?
源碼
https://github.com/YouXianMing/Swift-Animations
// // TableViewTapAnimationController.swift // Swift-Animations // // Created by YouXianMing on 16/8/7. // Copyright ? 2016年 YouXianMing. All rights reserved. // import UIKitclass TableViewTapAnimationController: NormalTitleViewController, UITableViewDelegate, UITableViewDataSource {var adapters : NSMutableArray!var tableView : UITableView!override func setup() {super.setup()// TableView.tableView = UITableView(frame: (contentView?.bounds)!)tableView.dataSource = selftableView.delegate = selftableView.separatorStyle = .NonecontentView?.addSubview(tableView!)// Register cell. TableViewTapAnimationCell.registerToTableView(tableView, cellReuseIdentifier: nil)// Data source.adapters = NSMutableArray()adapters.addObject(TableViewTapAnimationCell.dataAdapterWithData(TapAnimationModel(name: "YouXianMing", selected: false), cellHeight: 80))adapters.addObject(TableViewTapAnimationCell.dataAdapterWithData(TapAnimationModel(name: "Animations", selected: false), cellHeight: 80))adapters.addObject(TableViewTapAnimationCell.dataAdapterWithData(TapAnimationModel(name: "YoCelsius", selected: false), cellHeight: 80))adapters.addObject(TableViewTapAnimationCell.dataAdapterWithData(TapAnimationModel(name: "iOS-Progrommer", selected: false), cellHeight: 80))adapters.addObject(TableViewTapAnimationCell.dataAdapterWithData(TapAnimationModel(name: "Design-Patterns", selected: false), cellHeight: 80))adapters.addObject(TableViewTapAnimationCell.dataAdapterWithData(TapAnimationModel(name: "Arabia-Terra", selected: false), cellHeight: 80))adapters.addObject(TableViewTapAnimationCell.dataAdapterWithData(TapAnimationModel(name: "Swift", selected: false), cellHeight: 80))}// MARK: UITableView's delegate & dataSource. func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {return adapters.count}func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {return tableView.dequeueAndLoadContentReusableCellFromAdapter(adapters[indexPath.row] as! CellDataAdapter, indexPath: indexPath)}func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {tableView.selectedEventWithIndexPath(indexPath)}func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {return (adapters[indexPath.row] as! CellDataAdapter).cellHeight!} }?
轉載于:https://www.cnblogs.com/YouXianMing/p/5745716.html
總結
以上是生活随笔為你收集整理的Swift - UITableView状态切换效果的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 天天p图怎么样 天天P图拼图及抠图使用教
- 下一篇: 让我们的地球变得更加智慧