PagingView alternatives and similar libraries
Based on the "Table View / Collection View" category.
Alternatively, view PagingView alternatives based on common mentions on social networks and blogs.
-
SwipeCellKit
Swipeable UITableViewCell/UICollectionViewCell based on the stock Mail.app, implemented in Swift. -
MCSwipeTableViewCell
DISCONTINUED. 👆 Convenient UITableViewCell subclass that implements a swippable content to trigger actions (similar to the Mailbox app). -
HGPlaceholders
Nice library to show placeholders and Empty States for any UITableView/UICollectionView in your project -
ReverseExtension
A UITableView extension that enables cell insertion from the bottom of a table view. -
CenteredCollectionView
A lightweight UICollectionViewLayout that 'pages' and centers its cells 🎡 written in Swift -
Bohr
DISCONTINUED. Bohr allows you to set up a settings screen for your app with three principles in mind: ease, customization and extensibility. -
CascadingTableDelegate
A no-nonsense way to write cleaner UITableViewDelegate and UITableViewDataSource in Swift. -
GLTableCollectionView
Netflix and App Store like UITableView with UICollectionView, written in pure Swift 4.2 -
ListPlaceholder
ListPlaceholder is a swift library allows you to easily add facebook style animated loading placeholder to your tableviews or collection views. -
KDDragAndDropCollectionView
This component allows for the transfer of data items between collection views through drag and drop -
DataSources
💾 🔜📱 Type-safe data-driven CollectionView, TableView Framework. (We can also use ASCollectionNode) -
DTTableViewManager
Protocol-oriented UITableView management, powered by generics and associated types. -
TLIndexPathTools
TLIndexPathTools is a small set of classes that can greatly simplify your table and collection views. -
CollapsibleTableSectionViewController
:tada: Swift library to support collapsible sections in a table view. -
RHPreviewCell
I envied so much Spotify iOS app this great playlist preview cell 😍, I decided to create my own one 🌶. Now you can give your users ability to quick check "what content is hidden under your UITableViewCell". Great think is that this Library not requires 3D Touch support from user device💥. -
SquareMosaicLayout
An extandable mosaic UICollectionViewLayout with a focus on extremely flexible customizations :large_orange_diamond: -
HoverConversion
DISCONTINUED. HoverConversion realized vertical paging with UITableView. UIViewController will be paging when reaching top or bottom of UITableView contentOffset. -
GenericDataSource
A generic small reusable components for data source implementation for UITableView/UICollectionView in Swift. -
PJFDataSource
PJFDataSource is a small library that provides a simple, clean architecture for your app to manage its data sources while providing a consistent user interface for common content states (i.e. loading, loaded, empty, and error). -
AZCollectionViewController
Easy way to integrate pagination with dummy views in CollectionView, make Instagram "Discover" within minutes. -
ios-dragable-table-cells
DISCONTINUED. Objective-C library for drag-n-drop of UITableViewCells in a navigation hierarchy of view controllers.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of PagingView or a related project?
README
Infinite paging, Smart auto layout, Interface of similar to UIKit.
Appetize's Demo
Requirements
- Swift 4.2
- iOS 8.0 or later
How to Install PagingView
Cocoapods
Add the following to your Podfile
:
pod "PagingView"
Carthage
Add the following to your Cartfile
:
github "KyoheiG3/PagingView"
Usage
PagingView Variable
weak var dataSource: PagingViewDataSource?
- DataSource of
PagingView
. Same asdataSource
ofUICollectionView
.
var pagingMargin: UInt
- Margin between the content.
- Default is
0
.
var pagingInset: UInt
- Inset of content relative to size of
PagingView
. - Value of two times than of
pagingInset
to set for the left and right ofcontentInset
. - Default is
0
.
var infinite: Bool
- Infinite looping enabled flag.
- Default is
true
.
PagingView Function
func dequeueReusableCellWithReuseIdentifier(identifier: String) -> PagingView.PagingViewCell
- Used by the
delegate
to acquire an already allocated cell, in lieu of allocating a new one.
func registerNib(nib: UINib?, forCellWithReuseIdentifier identifier: String)
- If a nib is registered, it must contain exactly 1 top level object which is a
PagingViewCell
.
func registerClass<T : PagingView.PagingViewCell>(viewClass: T.Type, forCellWithReuseIdentifier identifier: String)
- If a class is registered, it will be instantiated via
init(frame: CGRect)
.
func reloadData()
- Requery the
dataSource
anddelegate
as necessary.
func invalidateLayout()
- Relayout as necessary.
func numberOfSections() -> Int
func numberOfItemsInSection(section: Int) -> Int
- Information about the current state of the
PagingView
.
func scrollToPosition(position: PagingView.PagingView.Position, indexPath: IndexPath? = default, animated: Bool = default)
- To scroll at
Position
. - Cell configure is performed at
IndexPath
.
func configureAtPosition(position: PagingView.PagingView.Position, toIndexPath: IndexPath? = default)
- Configure cell of
Position
. - IndexPath of cell in the center if indexPath is
nil
.
PagingViewDataSource Function
func pagingView(pagingView: PagingView.PagingView, numberOfItemsInSection section: Int) -> Int
- Paging count number of paging item in section.
func pagingView(pagingView: PagingView.PagingView, cellForItemAtIndexPath indexPath: IndexPath) -> PagingView.PagingViewCell
- Implementers should always try to reuse cells by setting each cell's reuseIdentifier and querying for available reusable cells with
dequeueReusableCellWithReuseIdentifier:
.
optional func numberOfSectionsInPagingView(pagingView: PagingView.PagingView) -> Int
- Paging count number of paging item section in
PagingView
. - Default return value is
1
.
optional func indexPathOfStartingInPagingView(pagingView: PagingView.PagingView) -> IndexPath?
- IndexPath when
pagingView:cellForItemAtIndexPath:
is first called - Default return value is
0 - 0
ofIndexPath
instance.
PagingViewDelegate Function
optional func pagingView(pagingView: PagingView.PagingView, willDisplayCell cell: PagingView.PagingViewCell, forItemAtIndexPath indexPath: IndexPath)
optional func pagingView(pagingView: PagingView.PagingView, didEndDisplayingCell cell: PagingView.PagingViewCell, forItemAtIndexPath indexPath: IndexPath)
- Called at the display and end-display of.
PagingViewCell Function
func prepareForReuse()
- if the cell is reusable (has a reuse identifier), this is called just before the cell is returned from the paging view method
dequeueReusableCellWithReuseIdentifier:
.
LICENSE
Under the MIT license. See LICENSE file for details.
*Note that all licence references and agreements mentioned in the PagingView README section above
are relevant to that project's source code only.