├── README.md ├── temperature.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Zzy.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── Zzy.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── temperature.xcscheme │ └── xcschememanagement.plist ├── temperature ├── AFNetworking │ ├── AFHTTPRequestOperation.h │ ├── AFHTTPRequestOperation.m │ ├── AFHTTPRequestOperationManager.h │ ├── AFHTTPRequestOperationManager.m │ ├── AFHTTPSessionManager.h │ ├── AFHTTPSessionManager.m │ ├── AFNetworkReachabilityManager.h │ ├── AFNetworkReachabilityManager.m │ ├── AFNetworking.h │ ├── AFSecurityPolicy.h │ ├── AFSecurityPolicy.m │ ├── AFURLConnectionOperation.h │ ├── AFURLConnectionOperation.m │ ├── AFURLRequestSerialization.h │ ├── AFURLRequestSerialization.m │ ├── AFURLResponseSerialization.h │ ├── AFURLResponseSerialization.m │ ├── AFURLSessionManager.h │ └── AFURLSessionManager.m ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── GlobalHolder.h ├── GlobalHolder.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── appicon.png │ ├── Background.imageset │ │ ├── Background.png │ │ └── Contents.json │ ├── BackgroundBallCold.imageset │ │ ├── BackgroundBallCold.png │ │ └── Contents.json │ ├── BackgroundBallWarm.imageset │ │ ├── BackgroundBall.png │ │ └── Contents.json │ ├── IconClose.imageset │ │ ├── Contents.json │ │ └── IconClose.png │ ├── IconLocation.imageset │ │ ├── Contents.json │ │ └── IconLocation.png │ ├── IconSetting.imageset │ │ ├── Contents.json │ │ └── IconSetting.png │ └── SlashIcon.imageset │ │ ├── Contents.json │ │ └── SlashIcon.png ├── Info.plist ├── LocationService.h ├── LocationService.m ├── MainViewController.h ├── MainViewController.m ├── PrefixHeader.pch ├── SettingViewController.h ├── SettingViewController.m ├── WeatherService.h ├── WeatherService.m └── main.m └── temperatureTests ├── Info.plist └── temperatureTests.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/README.md -------------------------------------------------------------------------------- /temperature.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /temperature.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /temperature.xcodeproj/project.xcworkspace/xcuserdata/Zzy.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature.xcodeproj/project.xcworkspace/xcuserdata/Zzy.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /temperature.xcodeproj/project.xcworkspace/xcuserdata/Zzy.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature.xcodeproj/project.xcworkspace/xcuserdata/Zzy.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /temperature.xcodeproj/xcuserdata/Zzy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature.xcodeproj/xcuserdata/Zzy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /temperature.xcodeproj/xcuserdata/Zzy.xcuserdatad/xcschemes/temperature.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature.xcodeproj/xcuserdata/Zzy.xcuserdatad/xcschemes/temperature.xcscheme -------------------------------------------------------------------------------- /temperature.xcodeproj/xcuserdata/Zzy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature.xcodeproj/xcuserdata/Zzy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /temperature/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /temperature/AFNetworking/AFHTTPRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFHTTPRequestOperation.m -------------------------------------------------------------------------------- /temperature/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /temperature/AFNetworking/AFHTTPRequestOperationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFHTTPRequestOperationManager.m -------------------------------------------------------------------------------- /temperature/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /temperature/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /temperature/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /temperature/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /temperature/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /temperature/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /temperature/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /temperature/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /temperature/AFNetworking/AFURLConnectionOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFURLConnectionOperation.m -------------------------------------------------------------------------------- /temperature/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /temperature/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /temperature/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /temperature/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /temperature/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /temperature/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /temperature/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AppDelegate.h -------------------------------------------------------------------------------- /temperature/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/AppDelegate.m -------------------------------------------------------------------------------- /temperature/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /temperature/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /temperature/GlobalHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/GlobalHolder.h -------------------------------------------------------------------------------- /temperature/GlobalHolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/GlobalHolder.m -------------------------------------------------------------------------------- /temperature/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /temperature/Images.xcassets/AppIcon.appiconset/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/AppIcon.appiconset/appicon.png -------------------------------------------------------------------------------- /temperature/Images.xcassets/Background.imageset/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/Background.imageset/Background.png -------------------------------------------------------------------------------- /temperature/Images.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/Background.imageset/Contents.json -------------------------------------------------------------------------------- /temperature/Images.xcassets/BackgroundBallCold.imageset/BackgroundBallCold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/BackgroundBallCold.imageset/BackgroundBallCold.png -------------------------------------------------------------------------------- /temperature/Images.xcassets/BackgroundBallCold.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/BackgroundBallCold.imageset/Contents.json -------------------------------------------------------------------------------- /temperature/Images.xcassets/BackgroundBallWarm.imageset/BackgroundBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/BackgroundBallWarm.imageset/BackgroundBall.png -------------------------------------------------------------------------------- /temperature/Images.xcassets/BackgroundBallWarm.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/BackgroundBallWarm.imageset/Contents.json -------------------------------------------------------------------------------- /temperature/Images.xcassets/IconClose.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/IconClose.imageset/Contents.json -------------------------------------------------------------------------------- /temperature/Images.xcassets/IconClose.imageset/IconClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/IconClose.imageset/IconClose.png -------------------------------------------------------------------------------- /temperature/Images.xcassets/IconLocation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/IconLocation.imageset/Contents.json -------------------------------------------------------------------------------- /temperature/Images.xcassets/IconLocation.imageset/IconLocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/IconLocation.imageset/IconLocation.png -------------------------------------------------------------------------------- /temperature/Images.xcassets/IconSetting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/IconSetting.imageset/Contents.json -------------------------------------------------------------------------------- /temperature/Images.xcassets/IconSetting.imageset/IconSetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/IconSetting.imageset/IconSetting.png -------------------------------------------------------------------------------- /temperature/Images.xcassets/SlashIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/SlashIcon.imageset/Contents.json -------------------------------------------------------------------------------- /temperature/Images.xcassets/SlashIcon.imageset/SlashIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Images.xcassets/SlashIcon.imageset/SlashIcon.png -------------------------------------------------------------------------------- /temperature/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/Info.plist -------------------------------------------------------------------------------- /temperature/LocationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/LocationService.h -------------------------------------------------------------------------------- /temperature/LocationService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/LocationService.m -------------------------------------------------------------------------------- /temperature/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/MainViewController.h -------------------------------------------------------------------------------- /temperature/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/MainViewController.m -------------------------------------------------------------------------------- /temperature/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/PrefixHeader.pch -------------------------------------------------------------------------------- /temperature/SettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/SettingViewController.h -------------------------------------------------------------------------------- /temperature/SettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/SettingViewController.m -------------------------------------------------------------------------------- /temperature/WeatherService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/WeatherService.h -------------------------------------------------------------------------------- /temperature/WeatherService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/WeatherService.m -------------------------------------------------------------------------------- /temperature/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperature/main.m -------------------------------------------------------------------------------- /temperatureTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperatureTests/Info.plist -------------------------------------------------------------------------------- /temperatureTests/temperatureTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleapples/iTemperature/HEAD/temperatureTests/temperatureTests.m --------------------------------------------------------------------------------