I want to create a โsectionโ that has an image and text below.
Should I subclass UIView or UIViewController? I think UIView, because it will not know which image or which text to display, it will simply be both. Also, if it is a UIView, which method should I add subviews (UIImageView and UILabel) as subviews? Or should I draw text and image without using UIImageView or UILabel in drawRect?
source
share