gitextract_uxx7488s/ ├── .gitignore ├── Classes/ │ ├── RLDHandledViewProtocol.swift │ ├── RLDTableViewController.swift │ ├── RLDTableViewDataSource.swift │ ├── RLDTableViewDelegate.swift │ ├── RLDTableViewEventHandler.swift │ ├── RLDTableViewEventHandlerProvider.swift │ └── RLDTableViewModel.swift ├── LICENSE ├── README.md ├── RLDTableViewSwift.podspec ├── Sample app/ │ ├── TableViewPrototype/ │ │ ├── AppDelegate.swift │ │ ├── Event handlers/ │ │ │ ├── RLDGenericTableViewCellEventHandler.swift │ │ │ └── RLDTableViewHeaderViewEventHandler.swift │ │ ├── Info.plist │ │ ├── Models/ │ │ │ ├── RLDBigPictureTableViewCellModel.swift │ │ │ ├── RLDCommentTableViewCellModel.swift │ │ │ ├── RLDGenericTableViewCellModel.swift │ │ │ ├── RLDSimpleTableViewCellModel.swift │ │ │ ├── RLDTableViewHeaderViewModel.swift │ │ │ └── RLDTableViewModelProvider.swift │ │ ├── RLDTableViewSwift-Info.plist │ │ ├── Resources/ │ │ │ ├── Images.xcassets/ │ │ │ │ ├── 0_small.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── 1_small.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── 2_big.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── 2_small.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── 3_small.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── 4_big.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5_small.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── 6_big.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7_big.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── 8_small.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── 9_small.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── LaunchScreen.xib │ │ │ ├── Main.storyboard │ │ │ ├── RLDTableViewHeaderView.xib │ │ │ └── viewModelData.plist │ │ ├── View controllers/ │ │ │ ├── RLDMasterViewController.swift │ │ │ └── RLDWebViewController.swift │ │ └── Views/ │ │ ├── RLDBigPictureTableViewCell.swift │ │ ├── RLDCommentTableViewCell.swift │ │ ├── RLDGenericTableViewCell.swift │ │ ├── RLDSimpleTableViewCell.swift │ │ └── RLDTableViewHeaderView.swift │ └── TableViewPrototype.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── TableViewPrototype.xccheckout │ └── xcuserdata/ │ └── rhocassiopeiae.xcuserdatad/ │ └── xcschemes/ │ ├── RLDTableViewSwift.xcscheme │ ├── TableViewPrototype.xcscheme │ └── xcschememanagement.plist └── Tests/ ├── Tests/ │ ├── Info.plist │ ├── RLDTableViewDataSourceTests.swift │ ├── RLDTableViewDelegateTests.swift │ ├── RLDTableViewEventHandlerProviderTests.swift │ ├── RLDTableViewModelTests.swift │ └── TestHelpers.swift └── Tests.xcodeproj/ ├── project.pbxproj ├── project.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── Tests.xccheckout └── xcshareddata/ └── xcschemes/ └── Tests.xcscheme