├── .gitignore ├── .gitmodules ├── PhotoData.xcodeproj └── project.pbxproj ├── PhotoData ├── AppDelegate.h ├── AppDelegate.m ├── ArrayDataSource.h ├── ArrayDataSource.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── DetailViewController.h ├── DetailViewController.m ├── DetailsViewController.h ├── DetailsViewController.m ├── DetailsViewController.xib ├── Photo.h ├── Photo.m ├── PhotoCell+ConfigureForPhoto.h ├── PhotoCell+ConfigureForPhoto.m ├── PhotoCell.h ├── PhotoCell.m ├── PhotoCell.xib ├── PhotoData-Info.plist ├── PhotoData-Prefix.pch ├── PhotoDetailViewController.xib ├── PhotoViewController.h ├── PhotoViewController.m ├── PhotoViewController.xib ├── PhotosViewController.h ├── PhotosViewController.m ├── PhotosViewController.xib ├── RatingCell.h ├── RatingCell.m ├── RatingCell.xib ├── Resources │ ├── star.png │ └── star@2x.png ├── Store.h ├── Store.m ├── User.h ├── User.m ├── en.lproj │ └── InfoPlist.strings ├── main.m ├── photo-data.bin └── photodata.bin ├── PhotoDataTests ├── ArchiveReadingTests.m ├── ArrayDataSourceTest.m ├── PhotoCellTests.m ├── PhotoDataTestCase.h ├── PhotoDataTestCase.m ├── PhotoDataTests-Info.plist ├── PhotosViewControllerTests.m └── en.lproj │ └── InfoPlist.strings └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/.gitmodules -------------------------------------------------------------------------------- /PhotoData.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PhotoData/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/AppDelegate.h -------------------------------------------------------------------------------- /PhotoData/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/AppDelegate.m -------------------------------------------------------------------------------- /PhotoData/ArrayDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/ArrayDataSource.h -------------------------------------------------------------------------------- /PhotoData/ArrayDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/ArrayDataSource.m -------------------------------------------------------------------------------- /PhotoData/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/Default-568h@2x.png -------------------------------------------------------------------------------- /PhotoData/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/Default.png -------------------------------------------------------------------------------- /PhotoData/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/Default@2x.png -------------------------------------------------------------------------------- /PhotoData/DetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/DetailViewController.h -------------------------------------------------------------------------------- /PhotoData/DetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/DetailViewController.m -------------------------------------------------------------------------------- /PhotoData/DetailsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/DetailsViewController.h -------------------------------------------------------------------------------- /PhotoData/DetailsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/DetailsViewController.m -------------------------------------------------------------------------------- /PhotoData/DetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/DetailsViewController.xib -------------------------------------------------------------------------------- /PhotoData/Photo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/Photo.h -------------------------------------------------------------------------------- /PhotoData/Photo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/Photo.m -------------------------------------------------------------------------------- /PhotoData/PhotoCell+ConfigureForPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoCell+ConfigureForPhoto.h -------------------------------------------------------------------------------- /PhotoData/PhotoCell+ConfigureForPhoto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoCell+ConfigureForPhoto.m -------------------------------------------------------------------------------- /PhotoData/PhotoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoCell.h -------------------------------------------------------------------------------- /PhotoData/PhotoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoCell.m -------------------------------------------------------------------------------- /PhotoData/PhotoCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoCell.xib -------------------------------------------------------------------------------- /PhotoData/PhotoData-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoData-Info.plist -------------------------------------------------------------------------------- /PhotoData/PhotoData-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoData-Prefix.pch -------------------------------------------------------------------------------- /PhotoData/PhotoDetailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoDetailViewController.xib -------------------------------------------------------------------------------- /PhotoData/PhotoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoViewController.h -------------------------------------------------------------------------------- /PhotoData/PhotoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoViewController.m -------------------------------------------------------------------------------- /PhotoData/PhotoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotoViewController.xib -------------------------------------------------------------------------------- /PhotoData/PhotosViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotosViewController.h -------------------------------------------------------------------------------- /PhotoData/PhotosViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotosViewController.m -------------------------------------------------------------------------------- /PhotoData/PhotosViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/PhotosViewController.xib -------------------------------------------------------------------------------- /PhotoData/RatingCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/RatingCell.h -------------------------------------------------------------------------------- /PhotoData/RatingCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/RatingCell.m -------------------------------------------------------------------------------- /PhotoData/RatingCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/RatingCell.xib -------------------------------------------------------------------------------- /PhotoData/Resources/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/Resources/star.png -------------------------------------------------------------------------------- /PhotoData/Resources/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/Resources/star@2x.png -------------------------------------------------------------------------------- /PhotoData/Store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/Store.h -------------------------------------------------------------------------------- /PhotoData/Store.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/Store.m -------------------------------------------------------------------------------- /PhotoData/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/User.h -------------------------------------------------------------------------------- /PhotoData/User.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/User.m -------------------------------------------------------------------------------- /PhotoData/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PhotoData/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/main.m -------------------------------------------------------------------------------- /PhotoData/photo-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/photo-data.bin -------------------------------------------------------------------------------- /PhotoData/photodata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoData/photodata.bin -------------------------------------------------------------------------------- /PhotoDataTests/ArchiveReadingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoDataTests/ArchiveReadingTests.m -------------------------------------------------------------------------------- /PhotoDataTests/ArrayDataSourceTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoDataTests/ArrayDataSourceTest.m -------------------------------------------------------------------------------- /PhotoDataTests/PhotoCellTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoDataTests/PhotoCellTests.m -------------------------------------------------------------------------------- /PhotoDataTests/PhotoDataTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoDataTests/PhotoDataTestCase.h -------------------------------------------------------------------------------- /PhotoDataTests/PhotoDataTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoDataTests/PhotoDataTestCase.m -------------------------------------------------------------------------------- /PhotoDataTests/PhotoDataTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoDataTests/PhotoDataTests-Info.plist -------------------------------------------------------------------------------- /PhotoDataTests/PhotosViewControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/PhotoDataTests/PhotosViewControllerTests.m -------------------------------------------------------------------------------- /PhotoDataTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-1-lighter-view-controllers/HEAD/README.md --------------------------------------------------------------------------------