My repository for learning iOS fundamentals in a concrete way
Go to video 14 in iOS Professional Steps:
- Delete Scene Delegate
- Delete main.storyboard
- Shift + command + F -> search main
- Search main for the infoplist removal
- Remove and then in info plist remove Application manifest completely
- Get rid of everything inside App delegate class(all the functions inside it)
- A code snippet for "no storyboard":
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
window = UIWindow(frame: UIScreen.main.bounds)
window?.makeKeyAndVisible()
window?.backgroundColor = .systemBackground
window?.rootViewController = ViewController()
return true
}