Onboarding View |
---|
Table View |
-
Delete SceneDelegate and delete Main.storyboard
-
Remove a reference to storyboards
- Update AppDelegate
Update by...
import UIKit
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
window = UIWindow(frame: UIScreen.main.bounds)
window?.makeKeyAndVisible()
window?.backgroundColor = .systemBackground
window?.rootViewController = ViewController()
return true
}
}
- Create UIView file
- Create View with the same name
- Set a size as Freeform