iOS Programming Recipe 6: Creating a custom UIView using a Nib
JANUARY 7, 2013BY MIKETT 12 COMMENTS Creating a custom UIView using a Nib Assumptions You are familiar with creating UIView subclasses, and instantiating UIView’s both from a Nib file or in code You are familiar with Nib files Background Sometimes you find yourself trying to create a quick composite UIView (UIView subclass w/ multiple subviews) where a UIViewController doesn’t seem necessaryPlease note that a UIViewController is the right choice most of the time. This can be a real pain to setu...