I have a custom view (xib
) that has a UIButton
inside of it, I made id IBDesignable
doing the following:
UserView.swift
import UIKit
@IBDesignable
class UserView: UIView {
@IBOutlet var view: UIView!
@IBOutlet weak var userButton: UIButton!
override init(frame: CGRect) {
super.init(frame: frame)
load()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
load()
}
fileprivate func load() {
Bundle.main.loadNibNamed("UserView", owner: self, options: nil)
addSubview(view)
self.frame = bounds
}
}
UserView.xib
- Added the UIButton and set constraints
- Set the File's Owner:
UserView
Storyboard
I added a UIView to a Bar Button Item
and assigned UserView class but nothing is rendering, and I got the following build error:
error: IB Designables: Failed to render and update auto layout status for FoodViewController (bR3-Kz-wX7): The agent threw an exception.
My currently environment: Xcode 9, Swift 4
Unfortunately, you can't use IBOutlets within a IBDesignable. Better answer for you here:
Live Render IBOutlet Connected Subviews Via IBInspectable Properties
Perhaps you wanted to have your UserView extend UIButton, rather than UIView?
I add this script at the end of my
Podfile
and performedpod install
again. So I could build normally my project.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:
To:
Which is bizarre, as in my case when comparing the two Bundles at runtime in LLDB they were identical (class name is different but the rest of my setup was identical to the OP)
Updated
Why loading NIB from main bundle does not work?
Because when InterfaceBuilder is rendering it is not running the application. There is no "main application bundle".
For me this problem solved by,
hahaha old hack :) Thanks!
Xcode 9.3, CocoaPods 1.5.3 It may be due to recent update on CocoaPods version. See issue here.
I had this error
IB Designables: Failed to render and update auto layout status
in the storyboard, the class STPPaymentCardTextField in Stripe SDK related to Cocoapods.Solution is to downgrade your CocoaPods to 1.4.0.
It is the problem with some cocoa pods versions like 1.5.0. If you are using this one then it cause to rendering failed to move from current version to other run this commands in terminal
You can install any specific version by mentioning like this
Hope it will works for you.