├── README.md ├── TB_PeriscopePTR.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── yari.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── yari.xcuserdatad │ └── xcschemes │ ├── TB_PeriscopePTR.xcscheme │ └── xcschememanagement.plist ├── TB_PeriscopePTR ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── CustomNavigationBar.swift ├── CustomNavigationController.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Loading.imageset │ │ ├── Contents.json │ │ ├── Rectangle 1.png │ │ ├── Rectangle 1@2x.png │ │ └── Rectangle 1@3x.png │ └── t&b.imageset │ │ ├── Contents.json │ │ └── t&b@2x.png ├── Info.plist └── TableViewController.swift └── TB_PeriscopePTRTests ├── Info.plist └── TB_PeriscopePTRTests.swift /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/README.md -------------------------------------------------------------------------------- /TB_PeriscopePTR.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TB_PeriscopePTR.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TB_PeriscopePTR.xcodeproj/project.xcworkspace/xcuserdata/yari.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR.xcodeproj/project.xcworkspace/xcuserdata/yari.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TB_PeriscopePTR.xcodeproj/xcuserdata/yari.xcuserdatad/xcschemes/TB_PeriscopePTR.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR.xcodeproj/xcuserdata/yari.xcuserdatad/xcschemes/TB_PeriscopePTR.xcscheme -------------------------------------------------------------------------------- /TB_PeriscopePTR.xcodeproj/xcuserdata/yari.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR.xcodeproj/xcuserdata/yari.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TB_PeriscopePTR/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/AppDelegate.swift -------------------------------------------------------------------------------- /TB_PeriscopePTR/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TB_PeriscopePTR/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TB_PeriscopePTR/CustomNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/CustomNavigationBar.swift -------------------------------------------------------------------------------- /TB_PeriscopePTR/CustomNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/CustomNavigationController.swift -------------------------------------------------------------------------------- /TB_PeriscopePTR/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TB_PeriscopePTR/Images.xcassets/Loading.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/Images.xcassets/Loading.imageset/Contents.json -------------------------------------------------------------------------------- /TB_PeriscopePTR/Images.xcassets/Loading.imageset/Rectangle 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/Images.xcassets/Loading.imageset/Rectangle 1.png -------------------------------------------------------------------------------- /TB_PeriscopePTR/Images.xcassets/Loading.imageset/Rectangle 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/Images.xcassets/Loading.imageset/Rectangle 1@2x.png -------------------------------------------------------------------------------- /TB_PeriscopePTR/Images.xcassets/Loading.imageset/Rectangle 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/Images.xcassets/Loading.imageset/Rectangle 1@3x.png -------------------------------------------------------------------------------- /TB_PeriscopePTR/Images.xcassets/t&b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/Images.xcassets/t&b.imageset/Contents.json -------------------------------------------------------------------------------- /TB_PeriscopePTR/Images.xcassets/t&b.imageset/t&b@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/Images.xcassets/t&b.imageset/t&b@2x.png -------------------------------------------------------------------------------- /TB_PeriscopePTR/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/Info.plist -------------------------------------------------------------------------------- /TB_PeriscopePTR/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTR/TableViewController.swift -------------------------------------------------------------------------------- /TB_PeriscopePTRTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTRTests/Info.plist -------------------------------------------------------------------------------- /TB_PeriscopePTRTests/TB_PeriscopePTRTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariok/TB_PeriscopePTR/HEAD/TB_PeriscopePTRTests/TB_PeriscopePTRTests.swift --------------------------------------------------------------------------------