Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Well although it's late in the dark night, I don't get it why there are two different rectangles: frame and bounds.

Like I understand it, one single rectangle would have been just enoug to do everything. Positioning the View itself relative to another coordinate system, and then clipping it's content to a specified size. What else would you do with two rectangles? And how do they interact with eachother?

Does anyone have a good explanation? The one from the apple docs with the kid holding the fruit is not pretty good for understanding.

share|improve this question

3 Answers

up vote 53 down vote accepted

Here's the cheatsheet:

  • frame is where the view is (with respect to the superview)
  • bounds is where the view is allowed to draw (with respect to itself)

Some more clarification:

If you are positioning the view in its superview, you almost always change the frame origin.

If you are clipping where the UIView is drawing, you almost always modify its bounds.

Note that you are allowed to have bounds that is bigger than the frame. That is, you can draw "outside the lines" of where you are.

share|improve this answer
so the frame is something like a starting coordinate relative to the superview coordinate system, and from that starting point the bounds clipping will be done in coordinates relative to the view coordinate system? – Thanks Apr 20 '09 at 9:37
I noticed that bounds always have 0,0 starting point. So bounds always start at 0. Am I correct? – Jim Thio Jun 20 '11 at 8:39
Typically bounds' origin is 0,0. It's not required to be so though. – amattn Sep 7 '11 at 23:36
"bounds is where the view is allowed to draw (with respect to itself)", that is true only if clipsToBounds is NO. – jbat100 Nov 12 '11 at 15:37
Yeah, see the last line for clarification on that... – amattn Nov 14 '11 at 18:57

Frame is in the superview's coordinate system, bounds is in the view's coordinate system. From my perspective, it is a convenience to have both. Frame seems to be the more useful of the two, unless there is some case I am unaware of where a subview can have a completely different coordinate system (e.g. pixels scaled differently) than the superview.

share|improve this answer
There is. If you change the subview's transform property, for example by setting its rotation, its bounds will be unchanged, but its coordinate system will be different than that of the superview. – jdc Mar 22 at 16:25

I've been having troubles with bounds lately and have done some experimentation. The bounds property does limit where a UIView can draw, but does not limit its subviews. The other thing bounds controls is touch event dispatching. A view will not, as far a I can tell, receive touch events that are outside its bounds. Furthermore, any subview that outside of the parent view's bounds will also not receive touch events. In these situations, you have to pretty meticulously update the bounds of the container view as the size and position of its subviews change. Everything will always draw fine (because subviews aren't clipped by the bounds of their parent) but touches won't be received.

(This really should be a reply to an earlier post, but since I can't reply yet, it's stuck here...)

share|improve this answer
1  
UIViews have a clipsToBounds property that will prevent its subview from coloring outside the lines. – amattn Feb 28 '11 at 6:38
If you override pointInside:withEvent you can intercept touch events from outside your views frame. Great for making buttons larger than they appear. – kubi Nov 17 '12 at 5:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.