├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── TvOSCustomizableTableViewCell.swift ├── TvOSCustomizableTableViewCell-Example ├── Podfile ├── Podfile.lock ├── TvOSCustomizableTableViewCell-Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── TvOSCustomizableTableViewCell-Example.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── TvOSCustomizableTableViewCell-Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - App Store.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── TvOSCustomizableTableViewCell.podspec ├── art ├── Preview.gif ├── cellCustomClass.jpg ├── cellTypeCustom.jpg ├── ibinspectables.png └── tableObjectLibrary.jpg ├── docs ├── UsageProgramatically.md └── UsageStoryboad.md └── project-info.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/README.md -------------------------------------------------------------------------------- /Sources/TvOSCustomizableTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/Sources/TvOSCustomizableTableViewCell.swift -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/Podfile -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/Podfile.lock -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/AppDelegate.swift -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/Info.plist -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell-Example/TvOSCustomizableTableViewCell-Example/ViewController.swift -------------------------------------------------------------------------------- /TvOSCustomizableTableViewCell.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/TvOSCustomizableTableViewCell.podspec -------------------------------------------------------------------------------- /art/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/art/Preview.gif -------------------------------------------------------------------------------- /art/cellCustomClass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/art/cellCustomClass.jpg -------------------------------------------------------------------------------- /art/cellTypeCustom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/art/cellTypeCustom.jpg -------------------------------------------------------------------------------- /art/ibinspectables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/art/ibinspectables.png -------------------------------------------------------------------------------- /art/tableObjectLibrary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/art/tableObjectLibrary.jpg -------------------------------------------------------------------------------- /docs/UsageProgramatically.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/docs/UsageProgramatically.md -------------------------------------------------------------------------------- /docs/UsageStoryboad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/docs/UsageStoryboad.md -------------------------------------------------------------------------------- /project-info.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zattoo/TvOSCustomizableTableViewCell/HEAD/project-info.toml --------------------------------------------------------------------------------