preview-transition alternatives and similar libraries
Based on the "Table View" category.
Alternatively, view preview-transition alternatives based on common mentions on social networks and blogs.
-
DZNEmptyDataSet
A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display -
folding-cell
:octocat: ๐ FoldingCell is an expanding content cell with animation made by @Ramotion -
MGSwipeTableCell
An easy to use UITableViewCell subclass that allows to display swippable buttons with a variety of transitions. -
SWTableViewCell
An easy-to-use UITableViewCell subclass that implements a swippable content view which exposes utility buttons (similar to iOS 7 Mail Application) -
CSStickyHeaderFlowLayout
UICollectionView replacement of UITableView. Do even more like Parallax Header, Sticky Section Header. Made for iOS 7. -
AMWaveTransition
Custom transition between viewcontrollers holding tableviews -
GSKStretchyHeaderView
A generic stretchy header for UITableView and UICollectionView -
ParallaxTableViewHeader
Parallax scrolling effect on UITableView header view when a tableView is scrolled -
ZYThumbnailTableView
a TableView have thumbnail cell only, and you can use gesture let it expands other expansionView, all diy -
Preheat
Automates prefetching of content in UITableView and UICollectionView -
QuickTableViewController
A simple way to create a UITableView for settings in Swift. -
MEVFloatingButton
An iOS drop-in UITableView, UICollectionView and UIScrollView superclass category for showing a customizable floating button on top of it. -
ConfigurableTableViewController
Typed, yet Flexible Table View Controller -
AEAccordion
Simple and lightweight UITableViewController with accordion effect (expand / collapse cells) -
VBPiledView
Simple and beautiful stacked UIView to use as a replacement for an UITableView, UIImageView or as a menu -
SelectionList
Simple single-selection or multiple-selection checklist, based on UITableView -
OKTableViewLiaison
Framework to help you better manage UITableViews -
BWSwipeRevealCell
A Swift library for swipeable table cells -
YXTPageView
A PageView, which supporting scrolling to transition between a UIView and a UITableView -
MVVMC-Demo
This is the demo of MVVM-C structure with dependency injection using RxSwift. -
ThunderTable
A declarative wrapper approach to UITableView -
StaticTableViewController
Dynamically hide / show cells of static UITableViewController -
Lightning-Table
A declarative api for working with UITableView. -
CollapsableTableKit
A kit for building tableviews with a collapsable animation, for each section. -
InfiniteScrollKit
A kit for building tableviews with a paging animation.
Appwrite - The open-source backend cloud platform
* 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 preview-transition or a related project?
README
PREVIEW TRANSITION
Preview Transition is a simple preview gallery UI controller with animated tranisitions
We specialize in the designing and coding of custom UI for Mobile Apps and Websites. Stay tuned for the latest updates:
About
This project is maintained by Ramotion, Inc. We specialize in the designing and coding of custom UI for Mobile Apps and Websites.
Looking for developers for your project? This project is maintained by Ramotion, Inc. We specialize in the designing and coding of custom UI for Mobile Apps and Websites.
Requirements
- iOS 9.0+
- Xcode 9
Licence
Preview-transition is released under the MIT license. See [LICENSE](./LICENSE) for details.
Installation
Just add the Source folder to your project or use CocoaPods like this:
pod "PreviewTransition"
or Carthage users can simply add to their Cartfile
:
github "Ramotion/preview-transition"
Usage
1) import PreviewTransition
2) Create UITableViewController inherit, inheriting from PTTableViewController
3) Add UITableViewDelegate methods
public override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return <RowsCount>
}
public override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
return tableView.dequeueReusableCellWithIdentifier(<CellIdentifier>, forIndexPath: indexPath)
}
4) add a ParallaxCell
storyboards:
create a cell and inherit from ParallaxCell
; don't forget set the identifier <CellIdentifier>
or programmatically:
register a cell in viewDidLoad tableView.registerClass(ParallaxCell, forCellReuseIdentifier:<CellIdentifier>)
5) set cell height
6) create image names (image sizes must be equal to screen size or bigger)
let images = [image_name, image_name, image_name, image_name, image_name] // image names
7) set image and text for ParallaxCell
public override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
guard let cell = cell as? ParallaxCell else {
return
}
let imageName = images[indexPath.row]
if let image = UIImage(named: imageName) {
cell.setImage(image, title: <SetText>)
}
}
your tableViewController should look like DemoTableViewController
Method public override func tableView(tableView: didSelectRowAtIndexPath indexPath:)
we will add later. (step 10)
8) Create UIViewController, inheriting from PTDetailViewController
9) Add action for backButton and call popViewController()
func backButtonHandler() {
popViewController()
}
10) Push this UIViewController in UITableViewController. Add method
public override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
// create viewController
let <YourViewController> = storyboard?.instantiateViewControllerWithIdentifier(<identifier>)
if case let viewController as <YourViewController> = viewController {
pushViewController(viewController)
}
}
11) Configure UINavigationBar
// transparent background
UINavigationBar.appearance().setBackgroundImage(UIImage(), forBarMetrics: .Default)
UINavigationBar.appearance().shadowImage = UIImage()
UINavigationBar.appearance().translucent = true
UINavigationBar.appearance().tintColor = .whiteColor()
// set font
if let font = UIFont(name: <Font name> , size: 18) {
UINavigationBar.appearance().titleTextAttributes = [
NSForegroundColorAttributeName : UIColor.whiteColor(),
NSFontAttributeName : font
]
}
๐ License
Preview Transition is released under the MIT license. See [LICENSE](./LICENSE) for details.
This library is a part of a selection of our best UI open-source projects.
If you use the open-source library in your project, please make sure to credit and backlink to https://www.ramotion.com/
๐ฑ Get the Showroom App for iOS to give it a try
Try this UI component and more like this in our iOS app. Contact us if interested.
*Note that all licence references and agreements mentioned in the preview-transition README section above
are relevant to that project's source code only.