blob: 1285a2736cb97b533169160762a43f4944d39712 [file] [log] [blame]
{
"name": "TLLayoutTransitioning",
"version": "1.0.2",
"summary": "Enhanced transitioning between UICollectionView layouts in iOS.",
"description": " TLLayoutTransitioning provides a `TLLayoutTransition` transition layout subclass and a `UICollectionView+TLTransitioning` category that combine to solve a few problems with collection view layout transitioning:\n\n 1. `UICollectionViewLayoutTransition` does not handle content offset well, often leaving cells where you don't want them. `TLTransitionLayout` provides elegant control of content offset with Minimal, Visible, Center, Top, Left, Bottom or Right placement options relative to one or more index paths.\n\n 2. `UICollectionViewLayoutTransition` does not support supplementary views. `TLTransitionLayout` provides support for any supplementary view kinds specified in the initializer.\n\n 3. `-[UICollectionView setCollectionViewLayout:animated:completion]` has [serious known bugs][3] in iOS7 and does not provide any animation options. TLLayoutTransitioning provides a robust alternative to this API with support for animation duration, 30+ easing curves and content offset control. This is done by using `CADisplayLink` to drive an interactive `TLTransitionLayout` as a non-interactive animation.\n\n Check out the demos in the Examples workspace!\n \n Changes in 1.0.2\n * Remove automatic disabling of user interaction during transition\n",
"homepage": "https://github.com/wtmoose/TLLayoutTransitioning",
"license": {
"type": "MIT"
},
"authors": {
"wtmoose": "wtm@tractablelabs.com"
},
"source": {
"git": "https://github.com/wtmoose/TLLayoutTransitioning.git",
"tag": "1.0.2"
},
"platforms": {
"ios": "7.0"
},
"source_files": "TLLayoutTransitioning/**/*.{h,m,c}",
"dependencies": {
"AHEasing": [
]
},
"frameworks": [
"UIKit",
"QuartzCore",
"Foundation"
],
"requires_arc": true
}