Comparison between CGRectInset and CGRectOffset for iOS development

Source: Internet
Author: User

1. CGRectInset

 
 
  1. CGRect CGRectInset ( 
  2. CGRect rect, 
  3. CGFloat dx, 
  4. CGFloat dy 
  5. ); 

The application of this struct is centered on the original rect. See dx and dy for scaling or amplification.

Each rectangle in the image is the above rectangle as the reference rectangle. So the next rectangle, such as the yellow rectangle, is the next rectangle for the green rectangle.) It is smaller than the previous rectangle. The specific small part should be determined by referring to dx and dy.

2. CGRectOffset

 
 
  1. CGRect CGRectOffset( 
  2. CGRect rect, 
  3. CGFloat dx, 
  4. CGFloat dy 
  5. ); 

Offset from the point in the upper left corner of the rect at the source rectangular origin) along the X and Y axes, and then along the X and Y axes on the basis of the rect

 
 
  1. float offset = 125.0; 
  2. CGRect r1 = CGRectMake(100, 100, 5, 5); 
  3. CGRect r2 = CGRectOffset(r1, offset, offset); 

3. frame and dounds

Frame and bounds are two properties in UIView ).

 
 
  1. -(CGRect)frame{ 
  2. return CGRectMake(self.frame.origin.x,self.frame.origin.y,self.frame.size.width,self.frame.size.height); 
  3. -(CGRect)bounds{ 
  4. return CGRectMake(0,0,self.frame.size.width,self.frame.size.height); 

Frame indicates the position and size of the view in the parent view coordinate system. The reference point is the father's coordinate system)

Bounds indicates the position and size of the view in its own coordinate system. The reference point is its own coordinate system)

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.