├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── WeatherApp.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── WeatherApp ├── Application └── AppDelegate.swift ├── Controllers ├── CitiesViewController.swift └── CityViewController.swift ├── Helpers ├── DatabaseHelper.swift ├── NetworkingHelper.swift └── TranslatorHelper.swift ├── Images.xcassets ├── AppIcon.appiconset │ └── Contents.json └── LaunchImage.launchimage │ └── Contents.json ├── Models └── City.swift ├── Supporting └── Info.plist └── Views └── Main.storyboard /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/README.md -------------------------------------------------------------------------------- /WeatherApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WeatherApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WeatherApp/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Application/AppDelegate.swift -------------------------------------------------------------------------------- /WeatherApp/Controllers/CitiesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Controllers/CitiesViewController.swift -------------------------------------------------------------------------------- /WeatherApp/Controllers/CityViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Controllers/CityViewController.swift -------------------------------------------------------------------------------- /WeatherApp/Helpers/DatabaseHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Helpers/DatabaseHelper.swift -------------------------------------------------------------------------------- /WeatherApp/Helpers/NetworkingHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Helpers/NetworkingHelper.swift -------------------------------------------------------------------------------- /WeatherApp/Helpers/TranslatorHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Helpers/TranslatorHelper.swift -------------------------------------------------------------------------------- /WeatherApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WeatherApp/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /WeatherApp/Models/City.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Models/City.swift -------------------------------------------------------------------------------- /WeatherApp/Supporting/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Supporting/Info.plist -------------------------------------------------------------------------------- /WeatherApp/Views/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnsafePointer/ios-swift-example/HEAD/WeatherApp/Views/Main.storyboard --------------------------------------------------------------------------------