├── AppLifecycle.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── angela.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── AppLifecycle ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── SceneDelegate.swift ├── ViewController1.swift └── ViewController2.swift /AppLifecycle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppLifecycle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppLifecycle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AppLifecycle.xcodeproj/xcuserdata/angela.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle.xcodeproj/xcuserdata/angela.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AppLifecycle/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle/AppDelegate.swift -------------------------------------------------------------------------------- /AppLifecycle/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AppLifecycle/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AppLifecycle/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AppLifecycle/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AppLifecycle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle/Info.plist -------------------------------------------------------------------------------- /AppLifecycle/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle/SceneDelegate.swift -------------------------------------------------------------------------------- /AppLifecycle/ViewController1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle/ViewController1.swift -------------------------------------------------------------------------------- /AppLifecycle/ViewController2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/AppLifecycle/HEAD/AppLifecycle/ViewController2.swift --------------------------------------------------------------------------------