├── License.md ├── README.md ├── ScreenShots ├── 1.PNG └── 2.PNG ├── dynamicCollectionView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Sagar_Shirbhate.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Sagar_Shirbhate.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── dynamicCollectionView.xcscheme │ └── xcschememanagement.plist └── dynamicCollectionView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── CollectionViewCell.h ├── CollectionViewCell.m ├── Info.plist ├── ViewController.h ├── ViewController.m ├── customLayout.h ├── customLayout.m └── main.m /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/ScreenShots/1.PNG -------------------------------------------------------------------------------- /ScreenShots/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/ScreenShots/2.PNG -------------------------------------------------------------------------------- /dynamicCollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dynamicCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /dynamicCollectionView.xcodeproj/project.xcworkspace/xcuserdata/Sagar_Shirbhate.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView.xcodeproj/project.xcworkspace/xcuserdata/Sagar_Shirbhate.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /dynamicCollectionView.xcodeproj/xcuserdata/Sagar_Shirbhate.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView.xcodeproj/xcuserdata/Sagar_Shirbhate.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /dynamicCollectionView.xcodeproj/xcuserdata/Sagar_Shirbhate.xcuserdatad/xcschemes/dynamicCollectionView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView.xcodeproj/xcuserdata/Sagar_Shirbhate.xcuserdatad/xcschemes/dynamicCollectionView.xcscheme -------------------------------------------------------------------------------- /dynamicCollectionView.xcodeproj/xcuserdata/Sagar_Shirbhate.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView.xcodeproj/xcuserdata/Sagar_Shirbhate.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /dynamicCollectionView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/AppDelegate.h -------------------------------------------------------------------------------- /dynamicCollectionView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/AppDelegate.m -------------------------------------------------------------------------------- /dynamicCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dynamicCollectionView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /dynamicCollectionView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /dynamicCollectionView/CollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/CollectionViewCell.h -------------------------------------------------------------------------------- /dynamicCollectionView/CollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/CollectionViewCell.m -------------------------------------------------------------------------------- /dynamicCollectionView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/Info.plist -------------------------------------------------------------------------------- /dynamicCollectionView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/ViewController.h -------------------------------------------------------------------------------- /dynamicCollectionView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/ViewController.m -------------------------------------------------------------------------------- /dynamicCollectionView/customLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/customLayout.h -------------------------------------------------------------------------------- /dynamicCollectionView/customLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/customLayout.m -------------------------------------------------------------------------------- /dynamicCollectionView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/DynamicHeightForCollectionView/HEAD/dynamicCollectionView/main.m --------------------------------------------------------------------------------