UIView and its subclasses all have the properties frame and bounds. What\'s the difference?
UIView
frame
bounds
The frame is the rectangle that defines the UIView with respect to its superview.
The bounds rect is the range of values that define that NSView's coordinate system.
i.e. anything in this rectangle will actually display in the UIView.