All Projects → pratik-123 → UITableViewCellAnimation

pratik-123 / UITableViewCellAnimation

Licence: other
Basic tabeview cell animation for best way to display cell

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to UITableViewCellAnimation

Tablekit
Type-safe declarative table views.
Stars: ✭ 567 (+1729.03%)
Mutual labels:  uitableview, uitableviewcell
Datasource
Simplifies the setup of UITableView data sources using type-safe descriptors for cells and sections. Animated diffing built-in.
Stars: ✭ 72 (+132.26%)
Mutual labels:  uitableview, uitableviewcell
Swipecellkit
A swipeable UITableViewCell or UICollectionViewCell with support for:
Stars: ✭ 5,745 (+18432.26%)
Mutual labels:  uitableview, uitableviewcell
TableViewKit
Empowering UITableView with painless multi-type cell support and built-in automatic state transition animations
Stars: ✭ 105 (+238.71%)
Mutual labels:  uitableview, uitableviewcell
Multiple-collectionView-in-Multiple-tableView-cells
UICollectionView is embed in UITableViewCell. The collection views are horizontal scrollable. The UITableView can have a section title for each UICollectionView and the number of UICollectionView is equal to the number of sections.
Stars: ✭ 23 (-25.81%)
Mutual labels:  uitableview, uitableviewcell
Uitableviewdynamiclayoutcacheheight
🖖高性能的自动计算采用 Autolayout 布局的 UITableViewCell 和 UITableViewHeaderFooterView 的高度,内部自动管理高度缓存。
Stars: ✭ 360 (+1061.29%)
Mutual labels:  uitableview, uitableviewcell
Mdl11 generics
Example project that was demonstrated on MDL #11 meetup - https://www.youtube.com/watch?v=A4FrEyFBjVA. Medium article - https://medium.com/chili-labs/configuring-multiple-cells-with-generics-in-swift-dcd5e209ba16
Stars: ✭ 50 (+61.29%)
Mutual labels:  uitableview, uitableviewcell
WBChainMenu
This will show horizontal menu to a UITableViewCell with chain animation
Stars: ✭ 28 (-9.68%)
Mutual labels:  uitableview, uitableviewcell
Expandabletable
AZExpandable is a lightweight proxy for UITableView to expand cells.
Stars: ✭ 218 (+603.23%)
Mutual labels:  uitableview, uitableviewcell
Reverseextension
A UITableView extension that enables cell insertion from the bottom of a table view.
Stars: ✭ 1,631 (+5161.29%)
Mutual labels:  uitableview, uitableviewcell
Gltablecollectionview
Netflix and App Store like UITableView with UICollectionView, written in pure Swift 4.2
Stars: ✭ 709 (+2187.1%)
Mutual labels:  uitableview, uitableviewcell
AUPickerCell
Embedded picker view for table cells.
Stars: ✭ 19 (-38.71%)
Mutual labels:  uitableview, uitableviewcell
Tdbadgedcell
TDBadgedCell is a table view cell class that adds a badge, similar to the badges in Apple's own apps
Stars: ✭ 1,444 (+4558.06%)
Mutual labels:  uitableview, uitableviewcell
Automatic Height Tagcells
This is a sample project to implement features with dynamic height of UITableViewCell based on autolayout, tags aligned automatically and clickable tags.
Stars: ✭ 229 (+638.71%)
Mutual labels:  uitableview, uitableviewcell
TreeView
"TreeView - sub-cells simplified" (c). Enable subcells in UITableView with a single drop-in extension. CocoaPod:
Stars: ✭ 54 (+74.19%)
Mutual labels:  uitableview, uitableviewcell
AdoHideTableSection
An easy way to hide or show section in a tableview
Stars: ✭ 57 (+83.87%)
Mutual labels:  uitableview
open-display-transform
Open Display Transform is a collection of tools and experiments for rendering wide-gamut scene-linear data into an image for an SDR or HDR display device.
Stars: ✭ 120 (+287.1%)
Mutual labels:  display
StackableTableView
A UITableView subclass that enables setting an array of views for both headers and footers utilizing UIStackView
Stars: ✭ 72 (+132.26%)
Mutual labels:  uitableview
VPAutoComplete
A simple Auto Complete UITextField also support UITableView written in swift 4.2
Stars: ✭ 20 (-35.48%)
Mutual labels:  uitableview
URParallaxScrollAnimator
Show an animation as far as moved scroll while scrolling at the scroll view
Stars: ✭ 34 (+9.68%)
Mutual labels:  uitableview

UITableViewCellAnimation

UITableViewCellAnimation is collection of animation in swift4 to perform animation in uitableviewcell.

Requirements

  • Xcode 9+
  • Swift 4

How to use

Copy UITableViewCellAnimationKit.swift file in your project and use it simply with UITableViewCell to .method

OR

UITableViewCellAnimation is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'UITableViewCellAnimation'

If you install pod then "import UITableViewCellAnimation" else simply use like below. for more info visit UITableViewCellAnimation.

Example

func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
        if (animationType == .bounce){
            cell.bouncingAnimation(forIndex: indexPath.row)
        }else if (animationType == .moveIn){
            cell.moveInAnimation(forIndex: indexPath.row)
        }else if (animationType == .leftIn){
            cell.leftInAnimation(forIndex: indexPath.row)
        }else if (animationType == .rightIn){
            cell.rightInAnimation(forIndex: indexPath.row)
        }else if (animationType == .side){
            if (indexPath.row % 2 == 0){
                cell.leftInAnimation(forIndex: indexPath.row)
            }else{
                cell.rightInAnimation(forIndex: indexPath.row)
            }
        }else{
            cell.fadeInAnimation(forIndex: indexPath.row)
        }
    }

alt tag

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].