A custom view with overridden intrinsicContentSize property is added to a UIStackView
override var intrinsicContentSize: CGSize {
return CGSize(width: 100, height: 44)
}
Although the custom view is drawn successfully in the simulator, I still want to get rid of this storyboard error message. Thank you