├── .DS_Store ├── README.md ├── TestCollectionViewWithXIB.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── lqs140184.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── lqs140184.xcuserdatad │ └── xcschemes │ ├── TestCollectionViewWithXIB.xcscheme │ └── xcschememanagement.plist └── TestCollectionViewWithXIB ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── MyCell.h ├── MyCell.m ├── MyCell.xib ├── TestCollectionViewWithXIB-Info.plist ├── TestCollectionViewWithXIB-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj ├── InfoPlist.strings └── ViewController.xib └── main.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/README.md -------------------------------------------------------------------------------- /TestCollectionViewWithXIB.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TestCollectionViewWithXIB.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TestCollectionViewWithXIB.xcodeproj/project.xcworkspace/xcuserdata/lqs140184.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB.xcodeproj/project.xcworkspace/xcuserdata/lqs140184.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TestCollectionViewWithXIB.xcodeproj/xcuserdata/lqs140184.xcuserdatad/xcschemes/TestCollectionViewWithXIB.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB.xcodeproj/xcuserdata/lqs140184.xcuserdatad/xcschemes/TestCollectionViewWithXIB.xcscheme -------------------------------------------------------------------------------- /TestCollectionViewWithXIB.xcodeproj/xcuserdata/lqs140184.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB.xcodeproj/xcuserdata/lqs140184.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/.DS_Store -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/AppDelegate.h -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/AppDelegate.m -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/Default-568h@2x.png -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/Default.png -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/Default@2x.png -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/MyCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/MyCell.h -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/MyCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/MyCell.m -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/MyCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/MyCell.xib -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/TestCollectionViewWithXIB-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/TestCollectionViewWithXIB-Info.plist -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/TestCollectionViewWithXIB-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/TestCollectionViewWithXIB-Prefix.pch -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/ViewController.h -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/ViewController.m -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /TestCollectionViewWithXIB/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lequysang/TestCollectionViewWithXIB/HEAD/TestCollectionViewWithXIB/main.m --------------------------------------------------------------------------------