├── README.md ├── testproto.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── testproto ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── btn1.imageset │ │ ├── Contents.json │ │ └── btn1@2x.png │ ├── btn2.imageset │ │ ├── Contents.json │ │ └── btn2@2x.png │ ├── btn3.imageset │ │ ├── Contents.json │ │ └── btn3@2x.png │ ├── btn4.imageset │ │ ├── Contents.json │ │ └── btn4@2x.png │ ├── btn5.imageset │ │ ├── Contents.json │ │ └── btn5@2x.png │ ├── btn6.imageset │ │ ├── Contents.json │ │ └── btn6@2x.png │ ├── cell.imageset │ │ ├── Contents.json │ │ └── cell@2x.png │ ├── cellbot.imageset │ │ ├── Contents.json │ │ └── cellbot@2x.png │ └── fab.imageset │ │ ├── Contents.json │ │ └── fab@2x.png ├── Info.plist └── home.swift └── testprotoTests ├── Info.plist └── testprotoTests.swift /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/README.md -------------------------------------------------------------------------------- /testproto.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /testproto.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /testproto/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/AppDelegate.swift -------------------------------------------------------------------------------- /testproto/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /testproto/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /testproto/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn1.imageset/Contents.json -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn1.imageset/btn1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn1.imageset/btn1@2x.png -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn2.imageset/Contents.json -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn2.imageset/btn2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn2.imageset/btn2@2x.png -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn3.imageset/Contents.json -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn3.imageset/btn3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn3.imageset/btn3@2x.png -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn4.imageset/Contents.json -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn4.imageset/btn4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn4.imageset/btn4@2x.png -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn5.imageset/Contents.json -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn5.imageset/btn5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn5.imageset/btn5@2x.png -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn6.imageset/Contents.json -------------------------------------------------------------------------------- /testproto/Images.xcassets/btn6.imageset/btn6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/btn6.imageset/btn6@2x.png -------------------------------------------------------------------------------- /testproto/Images.xcassets/cell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/cell.imageset/Contents.json -------------------------------------------------------------------------------- /testproto/Images.xcassets/cell.imageset/cell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/cell.imageset/cell@2x.png -------------------------------------------------------------------------------- /testproto/Images.xcassets/cellbot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/cellbot.imageset/Contents.json -------------------------------------------------------------------------------- /testproto/Images.xcassets/cellbot.imageset/cellbot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/cellbot.imageset/cellbot@2x.png -------------------------------------------------------------------------------- /testproto/Images.xcassets/fab.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/fab.imageset/Contents.json -------------------------------------------------------------------------------- /testproto/Images.xcassets/fab.imageset/fab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Images.xcassets/fab.imageset/fab@2x.png -------------------------------------------------------------------------------- /testproto/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/Info.plist -------------------------------------------------------------------------------- /testproto/home.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testproto/home.swift -------------------------------------------------------------------------------- /testprotoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testprotoTests/Info.plist -------------------------------------------------------------------------------- /testprotoTests/testprotoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiofun/Tumblr-Prototype/HEAD/testprotoTests/testprotoTests.swift --------------------------------------------------------------------------------