← Back to list

How to make a Swift4 iOS app without Storyboard

Developer apps faster and easier

Devin Sewell · 2018-10-28 00:00 · 0 claps · 0.8 min read
#ios #swift-4 #ios-10 #xcode-9
Open on Medium ↗
Wiki topics: 📱 · Mobile Development

How to make a Swift4 iOS app without Storyboard

Step 1.

Delete “Main.storyboard”

Step 2.

Delete “Main” from General->Main Interface

Step 3.

Click on “AppDelegate.swift”

Replace

//Override point for customization after application launch.

with:

window = UIWindow(frame: UIScreen.main.bounds) let homeViewController = ViewController() window?.rootViewController = homeViewController window?.makeKeyAndVisible() return true

Originally published at stacks2037.com on October 28, 2018.


메타데이터
post_id
aa1b07c4bf2f
slug
how-to-make-a-swift4-ios-app-without-storyboard-aa1b07c4bf2f
url
https://medium.com/@devin_sewell/how-to-make-a-swift4-ios-app-without-storyboard-aa1b07c4bf2f
canonical_url
https://medium.com/@devin_sewell/how-to-make-a-swift4-ios-app-without-storyboard-aa1b07c4bf2f
author_url
https://medium.com/@devin_sewell
status
ok
fetched_at
2026-07-29 22:52:39