IB Designables: Failed to render and update auto layout status
I just had the exact same issue, and the only thing that worked for me was instead of using the main Bundle I had to get the Bundle for the Nib I wanted. Essentially changing: Bundle.main.loadNibNamed(“UserView”, owner: self, options: nil) To: let bundle = Bundle(for: UserView.self) bundle.loadNibNamed(“UserView”, owner: self, options: nil) Which is bizarre, as … Read more