- Push from collection view to view controller like cell expanded
- Provide delegate for each transition state
- Show or hide expanded view
- Install with Carthage.
- Install with Cocoapods
- Custom transition
##Installation
github "ambas/ExpandableTransition"
##Usage
- import ExpandableViewTransition
- In UICollectionViewController set self.navigationviewControllerDelegate to
let delegateHolder = CENavigationControllerDelegate(isHideExpandedView: false)
self.navigationController?.delegate = delegateHolder- Implement
CEBaseViewControllerProtocolin your UICollectionViewController - If you want to do something when transitioning at destination view controller just implement
CEDestinationViewControllerProtocolin your destination view controller
