Is there a reason why the bounds property of UIView
(an NSView
) are a CGRect
when the only information you'll ever want in that property are the size of that CGRect
.
Is it just a shortcut for drawing since you'll need a CGRect
when drawing? Or just a very specific special case where the origin
of the bounds
could be something else than {0, 0}
?