├── .gitignore ├── .travis.yml ├── CastingApp ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Classy.cast ├── Info.plist └── ViewController.swift ├── CastingAppTests ├── CastingAppTests.swift └── Info.plist ├── LICENSE ├── README.md ├── cast ├── cast-script ├── Cast.h ├── Cast.swift ├── Info.plist └── main.swift ├── cast.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Cast (OSX).xcscheme │ ├── Cast (iOS).xcscheme │ ├── Cast (tvOS).xcscheme │ ├── CastingApp.xcscheme │ └── cast.xcscheme └── images ├── 1.png └── 2.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | xcuserdata 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/.travis.yml -------------------------------------------------------------------------------- /CastingApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/CastingApp/AppDelegate.swift -------------------------------------------------------------------------------- /CastingApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/CastingApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CastingApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/CastingApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CastingApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/CastingApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CastingApp/Classy.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/CastingApp/Classy.cast -------------------------------------------------------------------------------- /CastingApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/CastingApp/Info.plist -------------------------------------------------------------------------------- /CastingApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/CastingApp/ViewController.swift -------------------------------------------------------------------------------- /CastingAppTests/CastingAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/CastingAppTests/CastingAppTests.swift -------------------------------------------------------------------------------- /CastingAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/CastingAppTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/README.md -------------------------------------------------------------------------------- /cast: -------------------------------------------------------------------------------- 1 | cast-script/main.swift -------------------------------------------------------------------------------- /cast-script/Cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast-script/Cast.h -------------------------------------------------------------------------------- /cast-script/Cast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast-script/Cast.swift -------------------------------------------------------------------------------- /cast-script/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast-script/Info.plist -------------------------------------------------------------------------------- /cast-script/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast-script/main.swift -------------------------------------------------------------------------------- /cast.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /cast.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /cast.xcodeproj/xcshareddata/xcschemes/Cast (OSX).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast.xcodeproj/xcshareddata/xcschemes/Cast (OSX).xcscheme -------------------------------------------------------------------------------- /cast.xcodeproj/xcshareddata/xcschemes/Cast (iOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast.xcodeproj/xcshareddata/xcschemes/Cast (iOS).xcscheme -------------------------------------------------------------------------------- /cast.xcodeproj/xcshareddata/xcschemes/Cast (tvOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast.xcodeproj/xcshareddata/xcschemes/Cast (tvOS).xcscheme -------------------------------------------------------------------------------- /cast.xcodeproj/xcshareddata/xcschemes/CastingApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast.xcodeproj/xcshareddata/xcschemes/CastingApp.xcscheme -------------------------------------------------------------------------------- /cast.xcodeproj/xcshareddata/xcschemes/cast.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/cast.xcodeproj/xcshareddata/xcschemes/cast.xcscheme -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houzz/JSONCast/HEAD/images/2.png --------------------------------------------------------------------------------