Road To iOS Series 6
October 7, 2014
The bits about view in iOS:
- View is an instance of UIView or one of its subclass (e.g. UIScrollView UILabel…)
- View knows how to draw itself (e.g. drawInRect)
- View handles events (e.g. touches, value changes)
- View exists within a hierarchy of views. (root view is app’s window)