├── Podfile ├── Podfile.lock ├── Pods ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── ZeroJian.xcuserdatad │ │ └── xcschemes │ │ ├── Pods.xcscheme │ │ ├── SwiftyJSON.xcscheme │ │ └── xcschememanagement.plist ├── SwiftyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SwiftyJSON.swift └── Target Support Files │ ├── Pods │ ├── Info.plist │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-frameworks.sh │ ├── Pods-resources.sh │ ├── Pods-umbrella.h │ ├── Pods.debug.xcconfig │ ├── Pods.modulemap │ └── Pods.release.xcconfig │ └── SwiftyJSON │ ├── Info.plist │ ├── SwiftyJSON-dummy.m │ ├── SwiftyJSON-prefix.pch │ ├── SwiftyJSON-umbrella.h │ ├── SwiftyJSON.modulemap │ └── SwiftyJSON.xcconfig ├── README.md ├── UmbrellaWeather.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── ZeroJian.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ZeroJian.xcuserdatad │ └── xcschemes │ ├── Background Fetch.xcscheme │ ├── UmbrellaWeather.xcscheme │ └── xcschememanagement.plist ├── UmbrellaWeather.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── ZeroJian.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist └── UmbrellaWeather ├── Animated ├── DimmingPresentationController.swift ├── GradientView.swift └── InteractiveAnimation.swift ├── AppDelegate.swift ├── Base.lproj └── Main.storyboard ├── CityListViewController.swift ├── DataModel ├── City.swift ├── Citys.xml ├── DataModel.swift └── ParserXML.swift ├── HomeViewController.swift ├── Info.plist ├── Interface ├── CityListCell.xib ├── FirstView.xib └── WeekWeatherCell.xib ├── Server ├── DailyResult.swift ├── LocationService.swift ├── ServiceResult.swift ├── UIImageView+WeatherImage.swift └── WeatherResult.swift ├── Sources ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-120.png │ │ ├── Icon-121.png │ │ ├── Icon-180.png │ │ ├── Icon-58.png │ │ ├── Icon-80.png │ │ └── Icon-87.png │ ├── Arrows.imageset │ │ ├── Arrows.pdf │ │ └── Contents.json │ ├── Brand Assets.launchimage │ │ ├── Contents.json │ │ ├── IPhone 6PLus.png │ │ ├── IPhone4.png │ │ ├── IPhone5.png │ │ └── IPhone6.png │ ├── Contents.json │ ├── Detail.imageset │ │ ├── Contents.json │ │ └── Detail.pdf │ ├── DetailColor.imageset │ │ ├── Contents.json │ │ └── DetailColor.pdf │ ├── Launch.imageset │ │ ├── Contents.json │ │ ├── IPhone 6PLus-1.png │ │ └── IPhone6-1.png │ ├── Launch4.imageset │ │ ├── Contents.json │ │ └── IPhone4-1.png │ ├── Launch5.imageset │ │ ├── Contents.json │ │ └── IPhone5-1.png │ ├── Line.imageset │ │ ├── Contents.json │ │ ├── Line@2x.png │ │ └── Line@3x.png │ ├── Loading.imageset │ │ ├── Contents.json │ │ ├── Loading@2x.png │ │ └── Loading@3x.png │ ├── Location.imageset │ │ ├── Contents.json │ │ ├── Location@2x.png │ │ └── Location@3x.png │ ├── Logo.imageset │ │ ├── Contents.json │ │ └── Logo.pdf │ ├── Shape.imageset │ │ ├── Contents.json │ │ ├── Shape@2x.png │ │ └── Shape@3x.png │ └── WeatherImage │ │ ├── Cloudy.imageset │ │ ├── Cloudy.pdf │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Fog.imageset │ │ ├── Contents.json │ │ ├── Fog@2x.png │ │ └── Fog@3x.png │ │ ├── Rain.imageset │ │ ├── Contents.json │ │ └── Rain.pdf │ │ ├── Snow.imageset │ │ ├── Contents.json │ │ └── Snow.pdf │ │ └── Sun.imageset │ │ ├── Contents.json │ │ └── Sun9.pdf ├── DINNextLTPro-Light.otf └── WaterSound.wav ├── SupportTableViewController.swift ├── TimePickerViewController.swift ├── UIcolor+otherColor.swift └── View ├── CityListCell.swift ├── FirstView.swift ├── HeadView.swift ├── HomeView.swift ├── MainScrollView.swift ├── PullView.swift ├── WeatherView.swift ├── WeekWeatherCell.swift └── WeekWeatherCollectionView.swift /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '8.0' 2 | 3 | pod 'SwiftyJSON', '~> 2.3.2' 4 | use_frameworks! 5 | 6 | -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/Pods.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Pods.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/Pods.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/SwiftyJSON.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Pods.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/SwiftyJSON.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Pods.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SwiftyJSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/SwiftyJSON/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftyJSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/SwiftyJSON/README.md -------------------------------------------------------------------------------- /Pods/SwiftyJSON/Source/SwiftyJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/SwiftyJSON/Source/SwiftyJSON.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/Pods/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/Pods/Pods-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/Pods/Pods-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/Pods/Pods.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/SwiftyJSON/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/README.md -------------------------------------------------------------------------------- /UmbrellaWeather.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UmbrellaWeather.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UmbrellaWeather.xcodeproj/project.xcworkspace/xcuserdata/ZeroJian.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather.xcodeproj/project.xcworkspace/xcuserdata/ZeroJian.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UmbrellaWeather.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/Background Fetch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/Background Fetch.xcscheme -------------------------------------------------------------------------------- /UmbrellaWeather.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/UmbrellaWeather.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/UmbrellaWeather.xcscheme -------------------------------------------------------------------------------- /UmbrellaWeather.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather.xcodeproj/xcuserdata/ZeroJian.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UmbrellaWeather.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UmbrellaWeather.xcworkspace/xcuserdata/ZeroJian.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather.xcworkspace/xcuserdata/ZeroJian.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UmbrellaWeather.xcworkspace/xcuserdata/ZeroJian.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather.xcworkspace/xcuserdata/ZeroJian.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /UmbrellaWeather/Animated/DimmingPresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Animated/DimmingPresentationController.swift -------------------------------------------------------------------------------- /UmbrellaWeather/Animated/GradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Animated/GradientView.swift -------------------------------------------------------------------------------- /UmbrellaWeather/Animated/InteractiveAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Animated/InteractiveAnimation.swift -------------------------------------------------------------------------------- /UmbrellaWeather/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/AppDelegate.swift -------------------------------------------------------------------------------- /UmbrellaWeather/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UmbrellaWeather/CityListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/CityListViewController.swift -------------------------------------------------------------------------------- /UmbrellaWeather/DataModel/City.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/DataModel/City.swift -------------------------------------------------------------------------------- /UmbrellaWeather/DataModel/Citys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/DataModel/Citys.xml -------------------------------------------------------------------------------- /UmbrellaWeather/DataModel/DataModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/DataModel/DataModel.swift -------------------------------------------------------------------------------- /UmbrellaWeather/DataModel/ParserXML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/DataModel/ParserXML.swift -------------------------------------------------------------------------------- /UmbrellaWeather/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/HomeViewController.swift -------------------------------------------------------------------------------- /UmbrellaWeather/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Info.plist -------------------------------------------------------------------------------- /UmbrellaWeather/Interface/CityListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Interface/CityListCell.xib -------------------------------------------------------------------------------- /UmbrellaWeather/Interface/FirstView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Interface/FirstView.xib -------------------------------------------------------------------------------- /UmbrellaWeather/Interface/WeekWeatherCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Interface/WeekWeatherCell.xib -------------------------------------------------------------------------------- /UmbrellaWeather/Server/DailyResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Server/DailyResult.swift -------------------------------------------------------------------------------- /UmbrellaWeather/Server/LocationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Server/LocationService.swift -------------------------------------------------------------------------------- /UmbrellaWeather/Server/ServiceResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Server/ServiceResult.swift -------------------------------------------------------------------------------- /UmbrellaWeather/Server/UIImageView+WeatherImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Server/UIImageView+WeatherImage.swift -------------------------------------------------------------------------------- /UmbrellaWeather/Server/WeatherResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Server/WeatherResult.swift -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-120.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-121.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-180.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-58.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-80.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/AppIcon.appiconset/Icon-87.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Arrows.imageset/Arrows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Arrows.imageset/Arrows.pdf -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Arrows.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Arrows.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Brand Assets.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Brand Assets.launchimage/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Brand Assets.launchimage/IPhone 6PLus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Brand Assets.launchimage/IPhone 6PLus.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Brand Assets.launchimage/IPhone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Brand Assets.launchimage/IPhone4.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Brand Assets.launchimage/IPhone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Brand Assets.launchimage/IPhone5.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Brand Assets.launchimage/IPhone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Brand Assets.launchimage/IPhone6.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Detail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Detail.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Detail.imageset/Detail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Detail.imageset/Detail.pdf -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/DetailColor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/DetailColor.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/DetailColor.imageset/DetailColor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/DetailColor.imageset/DetailColor.pdf -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Launch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Launch.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Launch.imageset/IPhone 6PLus-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Launch.imageset/IPhone 6PLus-1.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Launch.imageset/IPhone6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Launch.imageset/IPhone6-1.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Launch4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Launch4.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Launch4.imageset/IPhone4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Launch4.imageset/IPhone4-1.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Launch5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Launch5.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Launch5.imageset/IPhone5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Launch5.imageset/IPhone5-1.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Line.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Line.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Line.imageset/Line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Line.imageset/Line@2x.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Line.imageset/Line@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Line.imageset/Line@3x.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Loading.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Loading.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Loading.imageset/Loading@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Loading.imageset/Loading@2x.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Loading.imageset/Loading@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Loading.imageset/Loading@3x.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Location.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Location.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Location.imageset/Location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Location.imageset/Location@2x.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Location.imageset/Location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Location.imageset/Location@3x.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Logo.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Logo.imageset/Logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Logo.imageset/Logo.pdf -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Shape.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Shape.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Shape.imageset/Shape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Shape.imageset/Shape@2x.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/Shape.imageset/Shape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/Shape.imageset/Shape@3x.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Cloudy.imageset/Cloudy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Cloudy.imageset/Cloudy.pdf -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Cloudy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Cloudy.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Fog.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Fog.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Fog.imageset/Fog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Fog.imageset/Fog@2x.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Fog.imageset/Fog@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Fog.imageset/Fog@3x.png -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Rain.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Rain.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Rain.imageset/Rain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Rain.imageset/Rain.pdf -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Snow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Snow.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Snow.imageset/Snow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Snow.imageset/Snow.pdf -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Sun.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Sun.imageset/Contents.json -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Sun.imageset/Sun9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/Assets.xcassets/WeatherImage/Sun.imageset/Sun9.pdf -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/DINNextLTPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/DINNextLTPro-Light.otf -------------------------------------------------------------------------------- /UmbrellaWeather/Sources/WaterSound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/Sources/WaterSound.wav -------------------------------------------------------------------------------- /UmbrellaWeather/SupportTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/SupportTableViewController.swift -------------------------------------------------------------------------------- /UmbrellaWeather/TimePickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/TimePickerViewController.swift -------------------------------------------------------------------------------- /UmbrellaWeather/UIcolor+otherColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/UIcolor+otherColor.swift -------------------------------------------------------------------------------- /UmbrellaWeather/View/CityListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/View/CityListCell.swift -------------------------------------------------------------------------------- /UmbrellaWeather/View/FirstView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/View/FirstView.swift -------------------------------------------------------------------------------- /UmbrellaWeather/View/HeadView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/View/HeadView.swift -------------------------------------------------------------------------------- /UmbrellaWeather/View/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/View/HomeView.swift -------------------------------------------------------------------------------- /UmbrellaWeather/View/MainScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/View/MainScrollView.swift -------------------------------------------------------------------------------- /UmbrellaWeather/View/PullView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/View/PullView.swift -------------------------------------------------------------------------------- /UmbrellaWeather/View/WeatherView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/View/WeatherView.swift -------------------------------------------------------------------------------- /UmbrellaWeather/View/WeekWeatherCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/View/WeekWeatherCell.swift -------------------------------------------------------------------------------- /UmbrellaWeather/View/WeekWeatherCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroJian/UmbrellaWeather/HEAD/UmbrellaWeather/View/WeekWeatherCollectionView.swift --------------------------------------------------------------------------------