Swift and swiftcode

Source: Internet
Author: User

Swift and swiftcode

Swift-UITableView status switch Effect

 

Effect

 

Source code

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 = self tableView. delegate = self tableView. separatorStyle =. None contentView ?. 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: fal Se), 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-Pa Tterns ", 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: UITableVi Ew, numberOfRowsInSection section: Int)-> Int {return adapters. count} func tableView (tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath)-> UITableViewCell {return tableView. dequeueAndLoadContentReusableCellFromAdapter (adapters [indexPath. row]! 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]! CellDataAdapter). cellHeight! }}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.