Independent WatchOS app in Objective C without Storyboard

I understand that if i am building a watchOS app using SwiftUI, there is no storyboard file involved. Hence, the user interface can be created all programatically. Similarly, can watchOS with Objective C be created without StoryBoards ?

Answered by Claude31 in 710797022

No you cannot:

Read this: https://stackoverflow.com/questions/33401704/can-i-programmatically-create-wkinterfacebutton

Note also, in the options when creating a new WatchOS project, if you select objectiveC, you can only use storyboard.

Accepted Answer

No you cannot:

Read this: https://stackoverflow.com/questions/33401704/can-i-programmatically-create-wkinterfacebutton

Note also, in the options when creating a new WatchOS project, if you select objectiveC, you can only use storyboard.

SwiftUI is the only native UI framework available for watchOS, and thus the only way to create a user interface without a storyboard.

Independent WatchOS app in Objective C without Storyboard
 
 
Q