├── .gitignore ├── Classes ├── CVCLCoverFlowLayout.h ├── CVCLCoverFlowLayout.m ├── CVCLHomeIconLayout.h ├── CVCLHomeIconLayout.m ├── CVCLRevolverLayout.h ├── CVCLRevolverLayout.m ├── CVCLStickyHeaderFlowLayout.h └── CVCLStickyHeaderFlowLayout.m ├── Examples ├── CVCLEamaples.xcodeproj │ └── project.pbxproj └── CVCLEamaples │ ├── .DS_Store │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CVCLEamaples-Info.plist │ ├── CVCLEamaples-Prefix.pch │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── ExampleLayoutsDataSource.h │ ├── ExampleLayoutsDataSource.m │ ├── ExampleRootViewController.h │ ├── ExampleRootViewController.m │ ├── ExampleViewController.h │ ├── ExampleViewController.m │ ├── MyCollectionViewCell.h │ ├── MyCollectionViewCell.m │ ├── MyHeaderView.h │ ├── MyHeaderView.m │ ├── MyIconCell.h │ ├── MyIconCell.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard │ └── main.m ├── README.md └── ScreenShots ├── ss1_cover_flow.png └── ss2_home_icons.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/CVCLCoverFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Classes/CVCLCoverFlowLayout.h -------------------------------------------------------------------------------- /Classes/CVCLCoverFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Classes/CVCLCoverFlowLayout.m -------------------------------------------------------------------------------- /Classes/CVCLHomeIconLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Classes/CVCLHomeIconLayout.h -------------------------------------------------------------------------------- /Classes/CVCLHomeIconLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Classes/CVCLHomeIconLayout.m -------------------------------------------------------------------------------- /Classes/CVCLRevolverLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Classes/CVCLRevolverLayout.h -------------------------------------------------------------------------------- /Classes/CVCLRevolverLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Classes/CVCLRevolverLayout.m -------------------------------------------------------------------------------- /Classes/CVCLStickyHeaderFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Classes/CVCLStickyHeaderFlowLayout.h -------------------------------------------------------------------------------- /Classes/CVCLStickyHeaderFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Classes/CVCLStickyHeaderFlowLayout.m -------------------------------------------------------------------------------- /Examples/CVCLEamaples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/CVCLEamaples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/.DS_Store -------------------------------------------------------------------------------- /Examples/CVCLEamaples/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/AppDelegate.h -------------------------------------------------------------------------------- /Examples/CVCLEamaples/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/AppDelegate.m -------------------------------------------------------------------------------- /Examples/CVCLEamaples/CVCLEamaples-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/CVCLEamaples-Info.plist -------------------------------------------------------------------------------- /Examples/CVCLEamaples/CVCLEamaples-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/CVCLEamaples-Prefix.pch -------------------------------------------------------------------------------- /Examples/CVCLEamaples/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/CVCLEamaples/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/Default.png -------------------------------------------------------------------------------- /Examples/CVCLEamaples/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/Default@2x.png -------------------------------------------------------------------------------- /Examples/CVCLEamaples/ExampleLayoutsDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/ExampleLayoutsDataSource.h -------------------------------------------------------------------------------- /Examples/CVCLEamaples/ExampleLayoutsDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/ExampleLayoutsDataSource.m -------------------------------------------------------------------------------- /Examples/CVCLEamaples/ExampleRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/ExampleRootViewController.h -------------------------------------------------------------------------------- /Examples/CVCLEamaples/ExampleRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/ExampleRootViewController.m -------------------------------------------------------------------------------- /Examples/CVCLEamaples/ExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/ExampleViewController.h -------------------------------------------------------------------------------- /Examples/CVCLEamaples/ExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/ExampleViewController.m -------------------------------------------------------------------------------- /Examples/CVCLEamaples/MyCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/MyCollectionViewCell.h -------------------------------------------------------------------------------- /Examples/CVCLEamaples/MyCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/MyCollectionViewCell.m -------------------------------------------------------------------------------- /Examples/CVCLEamaples/MyHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/MyHeaderView.h -------------------------------------------------------------------------------- /Examples/CVCLEamaples/MyHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/MyHeaderView.m -------------------------------------------------------------------------------- /Examples/CVCLEamaples/MyIconCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/MyIconCell.h -------------------------------------------------------------------------------- /Examples/CVCLEamaples/MyIconCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/MyIconCell.m -------------------------------------------------------------------------------- /Examples/CVCLEamaples/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/CVCLEamaples/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /Examples/CVCLEamaples/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/Examples/CVCLEamaples/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/ss1_cover_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/ScreenShots/ss1_cover_flow.png -------------------------------------------------------------------------------- /ScreenShots/ss2_home_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sawat/CVCLCustomLayouts/HEAD/ScreenShots/ss2_home_icons.png --------------------------------------------------------------------------------