├── .gitignore ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme └── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - Large.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 - Small.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 │ ├── bulbasaur.imageset │ │ ├── Contents.json │ │ └── bulbasaur.png │ ├── butterfree.imageset │ │ ├── Contents.json │ │ └── butterfree.png │ ├── charmander.imageset │ │ ├── Contents.json │ │ └── charmander.png │ └── pikachu.imageset │ │ ├── Contents.json │ │ └── pikachu.png │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── ViewDetails.swift │ └── ViewMain.swift ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── TvLightSegments.podspec ├── TvLightSegments.xcworkspace └── contents.xcworkspacedata └── TvLightSegments ├── TvLightSegments.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── TvLightSegments ├── CellSegment.swift ├── CellSegment.xib ├── Info.plist ├── TvLightSegments.h ├── TvLightSegments.swift └── TvLightSegmentsLayout.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/bulbasaur.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/bulbasaur.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/bulbasaur.imageset/bulbasaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/bulbasaur.imageset/bulbasaur.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/butterfree.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/butterfree.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/butterfree.imageset/butterfree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/butterfree.imageset/butterfree.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/charmander.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/charmander.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/charmander.imageset/charmander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/charmander.imageset/charmander.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/pikachu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/pikachu.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/pikachu.imageset/pikachu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Assets.xcassets/pikachu.imageset/pikachu.png -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/ViewDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/ViewDetails.swift -------------------------------------------------------------------------------- /Example/Example/ViewMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Example/Example/ViewMain.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/README.md -------------------------------------------------------------------------------- /TvLightSegments.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/TvLightSegments.podspec -------------------------------------------------------------------------------- /TvLightSegments.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/TvLightSegments.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TvLightSegments/TvLightSegments.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/TvLightSegments/TvLightSegments.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TvLightSegments/TvLightSegments.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/TvLightSegments/TvLightSegments.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TvLightSegments/TvLightSegments/CellSegment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/TvLightSegments/TvLightSegments/CellSegment.swift -------------------------------------------------------------------------------- /TvLightSegments/TvLightSegments/CellSegment.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/TvLightSegments/TvLightSegments/CellSegment.xib -------------------------------------------------------------------------------- /TvLightSegments/TvLightSegments/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/TvLightSegments/TvLightSegments/Info.plist -------------------------------------------------------------------------------- /TvLightSegments/TvLightSegments/TvLightSegments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/TvLightSegments/TvLightSegments/TvLightSegments.h -------------------------------------------------------------------------------- /TvLightSegments/TvLightSegments/TvLightSegments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/TvLightSegments/TvLightSegments/TvLightSegments.swift -------------------------------------------------------------------------------- /TvLightSegments/TvLightSegments/TvLightSegmentsLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macabeus/TvLightSegments/HEAD/TvLightSegments/TvLightSegments/TvLightSegmentsLayout.swift --------------------------------------------------------------------------------