├── .gitignore ├── AFTabledCollectionView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── ash.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ash.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── AFTabledCollectionView.xcscheme │ └── xcschememanagement.plist ├── AFTabledCollectionView ├── AFAppDelegate.h ├── AFAppDelegate.m ├── AFTableViewCell.h ├── AFTableViewCell.m ├── AFTabledCollectionView-Info.plist ├── AFTabledCollectionView-Prefix.pch ├── AFViewController.h ├── AFViewController.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── en.lproj │ └── InfoPlist.strings └── main.m ├── LICENSE ├── README.md └── readmeImage.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/.gitignore -------------------------------------------------------------------------------- /AFTabledCollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AFTabledCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AFTabledCollectionView.xcodeproj/project.xcworkspace/xcuserdata/ash.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView.xcodeproj/project.xcworkspace/xcuserdata/ash.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AFTabledCollectionView.xcodeproj/xcuserdata/ash.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView.xcodeproj/xcuserdata/ash.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /AFTabledCollectionView.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/AFTabledCollectionView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/AFTabledCollectionView.xcscheme -------------------------------------------------------------------------------- /AFTabledCollectionView.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AFTabledCollectionView/AFAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/AFAppDelegate.h -------------------------------------------------------------------------------- /AFTabledCollectionView/AFAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/AFAppDelegate.m -------------------------------------------------------------------------------- /AFTabledCollectionView/AFTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/AFTableViewCell.h -------------------------------------------------------------------------------- /AFTabledCollectionView/AFTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/AFTableViewCell.m -------------------------------------------------------------------------------- /AFTabledCollectionView/AFTabledCollectionView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/AFTabledCollectionView-Info.plist -------------------------------------------------------------------------------- /AFTabledCollectionView/AFTabledCollectionView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/AFTabledCollectionView-Prefix.pch -------------------------------------------------------------------------------- /AFTabledCollectionView/AFViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/AFViewController.h -------------------------------------------------------------------------------- /AFTabledCollectionView/AFViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/AFViewController.m -------------------------------------------------------------------------------- /AFTabledCollectionView/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/Default-568h@2x.png -------------------------------------------------------------------------------- /AFTabledCollectionView/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/Default.png -------------------------------------------------------------------------------- /AFTabledCollectionView/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/Default@2x.png -------------------------------------------------------------------------------- /AFTabledCollectionView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AFTabledCollectionView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/AFTabledCollectionView/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/README.md -------------------------------------------------------------------------------- /readmeImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/AFTabledCollectionView/HEAD/readmeImage.png --------------------------------------------------------------------------------