The difference between IOS bounds and frame

Source: Internet
Author: User

Write the case code today, find the data on the setting of a UIButton frame, this is set

Btncover.frame = Self.view.bounds;

But I wrote it the first way.

Btncover.frame = Self.view.frame;

Later, I found that two different ways to achieve I want to think about, that is, the size of UIButton and the size of the parent container is consistent, I wonder, since the same effect, why there are bounds and frame. Later, the following differences were found:

-(CGRect) frame{    return CGRectMake (Self.frame.origin.x,self.frame.origin.y,self.frame.size.width, Self.frame.size.height);}

-(CGRect) bounds{    return CGRectMake (0,0,self.frame.size.width,self.frame.size.height);}

, observing the above two code, found that the frame of the far point is arbitrary, and the origin of the bounds is 0, 0.

Frame: The position and size of the view in the parent view coordinate system. (reference point is, Father's coordinate system)
Bounds: The position and size of the view in the local coordinate system. (The reference point is that the local coordinate system is equivalent to VIEWB's own coordinate system, starting at 0, 0 points)

The difference between IOS bounds and frame

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.