iPhone Development - What's the Difference between the Origin and the bounds?
|
|
The origin is where view starts so 0,0 for example would mean that the view is in the top left corner of the screen. The bounds is the size and orgin of the screen together. So if the size is 10, 10 and the origin is 0, 0 then a view is located in the top left of the screen and is 10 pixels x 10 pixels. Edit 1: More detail Bounds is a CGRect (Documentation) |
|||
|
|
|
First of all, the So to answer your question, the |
|||
|
|