├── .gitignore ├── .travis.yml ├── Classes ├── NSObject+Accessors.h ├── NSObject+Accessors.m ├── RLDHandledViewProtocol.h ├── RLDTableViewController.h ├── RLDTableViewController.m ├── RLDTableViewDataSource.h ├── RLDTableViewDataSource.m ├── RLDTableViewDelegate.h ├── RLDTableViewDelegate.m ├── RLDTableViewEventHandlerProtocol.h ├── RLDTableViewEventHandlerProvider.h ├── RLDTableViewEventHandlerProvider.m ├── RLDTableViewModel.h ├── RLDTableViewModel.m ├── RLDTableViewModelProtocol.h └── RLDTableViewSuite.h ├── LICENSE ├── README.jpg ├── README.md ├── RLDTableViewSuite.podspec ├── Sample app ├── TableViewPrototype.xcodeproj │ └── project.pbxproj └── TableViewPrototype │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Event handlers │ ├── RLDGenericTableViewCellEventHandler.h │ ├── RLDGenericTableViewCellEventHandler.m │ ├── RLDTableViewHeaderViewEventHandler.h │ └── RLDTableViewHeaderViewEventHandler.m │ ├── Info.plist │ ├── Models │ ├── RLDBigPictureTableViewCellModel.h │ ├── RLDBigPictureTableViewCellModel.m │ ├── RLDCommentTableViewCellModel.h │ ├── RLDCommentTableViewCellModel.m │ ├── RLDGenericTableViewCellModel.h │ ├── RLDGenericTableViewCellModel.m │ ├── RLDSimpleTableViewCellModel.h │ ├── RLDSimpleTableViewCellModel.m │ ├── RLDTableViewHeaderViewModel.h │ ├── RLDTableViewHeaderViewModel.m │ ├── RLDTableViewModelProvider.h │ └── RLDTableViewModelProvider.m │ ├── Resources │ ├── Images.xcassets │ │ ├── 0_small.imageset │ │ │ ├── 0_small.jpg │ │ │ └── Contents.json │ │ ├── 1_small.imageset │ │ │ ├── 1_small.jpg │ │ │ └── Contents.json │ │ ├── 2_big.imageset │ │ │ ├── 2_big.jpg │ │ │ └── Contents.json │ │ ├── 2_small.imageset │ │ │ ├── 2_small.jpg │ │ │ └── Contents.json │ │ ├── 3_small.imageset │ │ │ ├── 3_small.jpg │ │ │ └── Contents.json │ │ ├── 4_big.imageset │ │ │ ├── 4_big.jpg │ │ │ └── Contents.json │ │ ├── 5_small.imageset │ │ │ ├── 5_small.jpg │ │ │ └── Contents.json │ │ ├── 6_big.imageset │ │ │ ├── 6_big.jpg │ │ │ └── Contents.json │ │ ├── 7_big.imageset │ │ │ ├── 7_big.jpg │ │ │ └── Contents.json │ │ ├── 8_small.imageset │ │ │ ├── 8_small.jpg │ │ │ └── Contents.json │ │ ├── 9_small.imageset │ │ │ ├── 9_small.jpg │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── LaunchScreen.xib │ ├── Main.storyboard │ ├── RLDTableViewHeaderView.xib │ └── viewModelData.plist │ ├── View controllers │ ├── RLDMasterViewController.h │ ├── RLDMasterViewController.m │ ├── RLDWebViewController.h │ └── RLDWebViewController.m │ ├── Views │ ├── RLDBigPictureTableViewCell.h │ ├── RLDBigPictureTableViewCell.m │ ├── RLDCommentTableViewCell.h │ ├── RLDCommentTableViewCell.m │ ├── RLDGenericTableViewCell.h │ ├── RLDGenericTableViewCell.m │ ├── RLDSimpleTableViewCell.h │ ├── RLDSimpleTableViewCell.m │ ├── RLDTableViewHeaderView.h │ └── RLDTableViewHeaderView.m │ └── main.m └── Tests ├── Support files ├── Default-568h@2x.png ├── Info.plist └── main.m ├── Tests.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── Tests.xcscheme └── Tests ├── RLDTableViewDataSourceTests.m ├── RLDTableViewDelegateTests.m ├── RLDTableViewEventHandlerProviderTests.m ├── RLDTableViewModelTests.m ├── TestHelpers.h └── TestHelpers.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/.travis.yml -------------------------------------------------------------------------------- /Classes/NSObject+Accessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/NSObject+Accessors.h -------------------------------------------------------------------------------- /Classes/NSObject+Accessors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/NSObject+Accessors.m -------------------------------------------------------------------------------- /Classes/RLDHandledViewProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDHandledViewProtocol.h -------------------------------------------------------------------------------- /Classes/RLDTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewController.h -------------------------------------------------------------------------------- /Classes/RLDTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewController.m -------------------------------------------------------------------------------- /Classes/RLDTableViewDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewDataSource.h -------------------------------------------------------------------------------- /Classes/RLDTableViewDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewDataSource.m -------------------------------------------------------------------------------- /Classes/RLDTableViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewDelegate.h -------------------------------------------------------------------------------- /Classes/RLDTableViewDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewDelegate.m -------------------------------------------------------------------------------- /Classes/RLDTableViewEventHandlerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewEventHandlerProtocol.h -------------------------------------------------------------------------------- /Classes/RLDTableViewEventHandlerProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewEventHandlerProvider.h -------------------------------------------------------------------------------- /Classes/RLDTableViewEventHandlerProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewEventHandlerProvider.m -------------------------------------------------------------------------------- /Classes/RLDTableViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewModel.h -------------------------------------------------------------------------------- /Classes/RLDTableViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewModel.m -------------------------------------------------------------------------------- /Classes/RLDTableViewModelProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewModelProtocol.h -------------------------------------------------------------------------------- /Classes/RLDTableViewSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Classes/RLDTableViewSuite.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/README.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/README.md -------------------------------------------------------------------------------- /RLDTableViewSuite.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/RLDTableViewSuite.podspec -------------------------------------------------------------------------------- /Sample app/TableViewPrototype.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/AppDelegate.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/AppDelegate.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Event handlers/RLDGenericTableViewCellEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Event handlers/RLDGenericTableViewCellEventHandler.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Event handlers/RLDGenericTableViewCellEventHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Event handlers/RLDGenericTableViewCellEventHandler.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Event handlers/RLDTableViewHeaderViewEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Event handlers/RLDTableViewHeaderViewEventHandler.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Event handlers/RLDTableViewHeaderViewEventHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Event handlers/RLDTableViewHeaderViewEventHandler.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Info.plist -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDBigPictureTableViewCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDBigPictureTableViewCellModel.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDBigPictureTableViewCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDBigPictureTableViewCellModel.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDCommentTableViewCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDCommentTableViewCellModel.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDCommentTableViewCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDCommentTableViewCellModel.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDGenericTableViewCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDGenericTableViewCellModel.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDGenericTableViewCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDGenericTableViewCellModel.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDSimpleTableViewCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDSimpleTableViewCellModel.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDSimpleTableViewCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDSimpleTableViewCellModel.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDTableViewHeaderViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDTableViewHeaderViewModel.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDTableViewHeaderViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDTableViewHeaderViewModel.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDTableViewModelProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDTableViewModelProvider.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Models/RLDTableViewModelProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Models/RLDTableViewModelProvider.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/0_small.imageset/0_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/0_small.imageset/0_small.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/0_small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/0_small.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/1_small.imageset/1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/1_small.imageset/1_small.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/1_small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/1_small.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/2_big.imageset/2_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/2_big.imageset/2_big.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/2_big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/2_big.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/2_small.imageset/2_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/2_small.imageset/2_small.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/2_small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/2_small.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/3_small.imageset/3_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/3_small.imageset/3_small.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/3_small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/3_small.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/4_big.imageset/4_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/4_big.imageset/4_big.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/4_big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/4_big.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/5_small.imageset/5_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/5_small.imageset/5_small.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/5_small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/5_small.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/6_big.imageset/6_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/6_big.imageset/6_big.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/6_big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/6_big.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/7_big.imageset/7_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/7_big.imageset/7_big.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/7_big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/7_big.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/8_small.imageset/8_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/8_small.imageset/8_small.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/8_small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/8_small.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/9_small.imageset/9_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/9_small.imageset/9_small.jpg -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/9_small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/9_small.imageset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/Main.storyboard -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/RLDTableViewHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/RLDTableViewHeaderView.xib -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Resources/viewModelData.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Resources/viewModelData.plist -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/View controllers/RLDMasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/View controllers/RLDMasterViewController.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/View controllers/RLDMasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/View controllers/RLDMasterViewController.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/View controllers/RLDWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/View controllers/RLDWebViewController.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/View controllers/RLDWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/View controllers/RLDWebViewController.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Views/RLDBigPictureTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Views/RLDBigPictureTableViewCell.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Views/RLDBigPictureTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Views/RLDBigPictureTableViewCell.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Views/RLDCommentTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Views/RLDCommentTableViewCell.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Views/RLDCommentTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Views/RLDCommentTableViewCell.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Views/RLDGenericTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Views/RLDGenericTableViewCell.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Views/RLDGenericTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Views/RLDGenericTableViewCell.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Views/RLDSimpleTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Views/RLDSimpleTableViewCell.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Views/RLDSimpleTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Views/RLDSimpleTableViewCell.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Views/RLDTableViewHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Views/RLDTableViewHeaderView.h -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/Views/RLDTableViewHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/Views/RLDTableViewHeaderView.m -------------------------------------------------------------------------------- /Sample app/TableViewPrototype/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Sample app/TableViewPrototype/main.m -------------------------------------------------------------------------------- /Tests/Support files/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Support files/Default-568h@2x.png -------------------------------------------------------------------------------- /Tests/Support files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Support files/Info.plist -------------------------------------------------------------------------------- /Tests/Support files/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Support files/main.m -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Tests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Tests.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme -------------------------------------------------------------------------------- /Tests/Tests/RLDTableViewDataSourceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Tests/RLDTableViewDataSourceTests.m -------------------------------------------------------------------------------- /Tests/Tests/RLDTableViewDelegateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Tests/RLDTableViewDelegateTests.m -------------------------------------------------------------------------------- /Tests/Tests/RLDTableViewEventHandlerProviderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Tests/RLDTableViewEventHandlerProviderTests.m -------------------------------------------------------------------------------- /Tests/Tests/RLDTableViewModelTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Tests/RLDTableViewModelTests.m -------------------------------------------------------------------------------- /Tests/Tests/TestHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Tests/TestHelpers.h -------------------------------------------------------------------------------- /Tests/Tests/TestHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDTableViewSuite/HEAD/Tests/Tests/TestHelpers.m --------------------------------------------------------------------------------