├── .gitignore ├── Content ├── Images │ └── cards_png │ │ ├── README.md │ │ ├── c1.png │ │ ├── c10.png │ │ ├── c11.png │ │ ├── c12.png │ │ ├── c13.png │ │ ├── c2.png │ │ ├── c3.png │ │ ├── c4.png │ │ ├── c5.png │ │ ├── c6.png │ │ ├── c7.png │ │ ├── c8.png │ │ ├── c9.png │ │ ├── d1.png │ │ ├── d10.png │ │ ├── d11.png │ │ ├── d12.png │ │ ├── d13.png │ │ ├── d2.png │ │ ├── d3.png │ │ ├── d4.png │ │ ├── d5.png │ │ ├── d6.png │ │ ├── d7.png │ │ ├── d8.png │ │ ├── d9.png │ │ ├── ec.png │ │ ├── h1.png │ │ ├── h10.png │ │ ├── h11.png │ │ ├── h12.png │ │ ├── h13.png │ │ ├── h2.png │ │ ├── h3.png │ │ ├── h4.png │ │ ├── h5.png │ │ ├── h6.png │ │ ├── h7.png │ │ ├── h8.png │ │ ├── h9.png │ │ ├── s1.png │ │ ├── s10.png │ │ ├── s11.png │ │ ├── s12.png │ │ ├── s13.png │ │ ├── s2.png │ │ ├── s3.png │ │ ├── s4.png │ │ ├── s5.png │ │ ├── s6.png │ │ ├── s7.png │ │ ├── s8.png │ │ └── s9.png └── Screenshots │ └── screenshot1.png ├── LICENSE ├── LXRCVFL Example using Storyboard ├── LXRCVFL Example using Storyboard.xcodeproj │ └── project.pbxproj └── LXRCVFL Example using Storyboard │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── LXCollectionViewController.h │ ├── LXCollectionViewController.m │ ├── LXRCVFL Example using Storyboard-Info.plist │ ├── LXRCVFL Example using Storyboard-Prefix.pch │ ├── PlayingCard.h │ ├── PlayingCard.m │ ├── PlayingCardCell.h │ ├── PlayingCardCell.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard │ └── main.m ├── LXReorderableCollectionViewFlowLayout.podspec ├── LXReorderableCollectionViewFlowLayout ├── LXReorderableCollectionViewFlowLayout.h └── LXReorderableCollectionViewFlowLayout.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/Images/cards_png/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/README.md -------------------------------------------------------------------------------- /Content/Images/cards_png/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c1.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c10.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c11.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c12.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c13.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c2.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c3.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c4.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c5.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c6.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c7.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c8.png -------------------------------------------------------------------------------- /Content/Images/cards_png/c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/c9.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d1.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d10.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d11.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d12.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d13.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d2.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d3.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d4.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d5.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d6.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d7.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d8.png -------------------------------------------------------------------------------- /Content/Images/cards_png/d9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/d9.png -------------------------------------------------------------------------------- /Content/Images/cards_png/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/ec.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h1.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h10.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h11.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h12.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h13.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h2.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h3.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h4.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h5.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h6.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h7.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h8.png -------------------------------------------------------------------------------- /Content/Images/cards_png/h9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/h9.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s1.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s10.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s11.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s12.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s13.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s2.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s3.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s4.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s5.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s6.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s7.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s8.png -------------------------------------------------------------------------------- /Content/Images/cards_png/s9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Images/cards_png/s9.png -------------------------------------------------------------------------------- /Content/Screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/Content/Screenshots/screenshot1.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/AppDelegate.h -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/AppDelegate.m -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/Default-568h@2x.png -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/Default.png -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/Default@2x.png -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/LXCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/LXCollectionViewController.h -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/LXCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/LXCollectionViewController.m -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard-Info.plist -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard-Prefix.pch -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/PlayingCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/PlayingCard.h -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/PlayingCard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/PlayingCard.m -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/PlayingCardCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/PlayingCardCell.h -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/PlayingCardCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/PlayingCardCell.m -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXRCVFL Example using Storyboard/LXRCVFL Example using Storyboard/main.m -------------------------------------------------------------------------------- /LXReorderableCollectionViewFlowLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXReorderableCollectionViewFlowLayout.podspec -------------------------------------------------------------------------------- /LXReorderableCollectionViewFlowLayout/LXReorderableCollectionViewFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXReorderableCollectionViewFlowLayout/LXReorderableCollectionViewFlowLayout.h -------------------------------------------------------------------------------- /LXReorderableCollectionViewFlowLayout/LXReorderableCollectionViewFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/LXReorderableCollectionViewFlowLayout/LXReorderableCollectionViewFlowLayout.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxcid/LXReorderableCollectionViewFlowLayout/HEAD/README.md --------------------------------------------------------------------------------