Creating a Watchkit app Programatically without Storyboard files

I'm trying to create an independent watchOS application(WatchKit) using Objective-C. In UIKit(iOS) its possible to create an app purely programatically without using any Interface builder files(storyboard or xib). Watchkit has its own programmatic controls like WKInterfaceLabel, but I was not able to use it independently without a storyboard file. Adding to this, there were no entries in the Info.Plist file for the Main storyboard file.

Wanted to understand if it was possible to create a WatchOS application purely using code.

Yes, it is possible if you use SwiftUI. This, of course, means you must use Swift rather than Objective-C.

Creating a Watchkit app Programatically without Storyboard files
 
 
Q