tags:

views:

52

answers:

2

Hi all,

I want to know what is the difference between 'frame' and 'bound' property of UIView. I get the same results using both properties. I can not figure out the difference between the two..

Thanx in advance.

+1  A: 

This is covered in the documentation. The frame and bounds are two different coordinate systems.

Graham Lee
+3  A: 

The frame is the view's location in its superview, using superview's coordinate system.

The bounds is its location and size in its own coordinate system.

If you are getting the same results for both properties, it means that the view fills its superview, and both views have (0, 0) as the origin. Try changing the frame, and you will see it move to different positions within its superview.

Kristopher Johnson