Resize subview when superview finishes loading
问题 I know theres countless similar questions on this that either all result in using flexible height/width or setting translatesAutoresizingMaskIntoConstraints to false. I have add a view using an extension I created: extension UIView { func addView(storyboard: String, viewIdentier: String) { let story = UIStoryboard(name: storyboard, bundle: nil) let subview = story.instantiateViewController(withIdentifier: viewIdentifier) subview.view.frame = self.bounds self.addSubview(subview.view) } } If I