I recently upgraded to Xcode 8 and I am having issues with the Storyboard.
If I open the project and I don\'t have the Storyboard open, it will compile and run just
If you're using xib file for custom uiview. Try this:
Change from
Bundle.main.loadNibNamed("UserView", owner: self, options: nil)
To:
let bundle = Bundle(for: UserView.self) bundle.loadNibNamed("UserView", owner: self, options: nil)