├── .gitignore ├── LICENSE ├── README.md ├── SO-33632266.xcodeproj └── project.pbxproj └── SO-33632266 ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftArchitect/SO-33632266/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftArchitect/SO-33632266/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftArchitect/SO-33632266/HEAD/README.md -------------------------------------------------------------------------------- /SO-33632266.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftArchitect/SO-33632266/HEAD/SO-33632266.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SO-33632266/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftArchitect/SO-33632266/HEAD/SO-33632266/AppDelegate.swift -------------------------------------------------------------------------------- /SO-33632266/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftArchitect/SO-33632266/HEAD/SO-33632266/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SO-33632266/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftArchitect/SO-33632266/HEAD/SO-33632266/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SO-33632266/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftArchitect/SO-33632266/HEAD/SO-33632266/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SO-33632266/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftArchitect/SO-33632266/HEAD/SO-33632266/Info.plist -------------------------------------------------------------------------------- /SO-33632266/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftArchitect/SO-33632266/HEAD/SO-33632266/ViewController.swift --------------------------------------------------------------------------------