UIView-NibLoading icon indicating copy to clipboard operation
UIView-NibLoading copied to clipboard

UIView category and subclass for loading content subviews from nib files.

Results 4 UIView-NibLoading issues
Sort by recently updated
recently updated
newest added

Size classes are not supported because of the way the views are removed from the `containerView` and then added as a subview of the view itself, before the constraints are...

If view class object contains autolayout constraint IBOutlets, they will be set to nil after ARC deallocs nib and initial container view. Quick fix will be something like this: ```...

This should fix the crash in iOS 6 that happens when a NibLoadedView is deallocated. This happens because iOS6 still returns the old container view as it's superview after it...

I spent several hours trying to understand why a view that was created using your class crashed my application when I called removeFromSuperview on it. Turned out that you do...