The coordinate transformation in the iOS development note--uiview

Source: Internet
Author: User
[OBJC]View plain Copy//convert pixel point from view to Target view, return the pixel value in the view of the target views-(Cgpoint) Convertpoint: (cgpoint) point Toview: (UIV   Iew *) view;      Converts the pixel point from view to the current view, returning the pixel value in the current View-(Cgpoint) Convertpoint: (cgpoint) point fromview: (UIView *) view;   Converts the rect from the Rect view to the target view, returning rect-(CGRect) Convertrect: (cgrect) rect toview: (UIView *) view in the target view; Converts rect from view to the current view, returning Rect-(CGRect) Convertrect in the current View: (CGRect) rect fromview: (UIView *) view;

The example converts the frame of Subview (BTN) in UITableViewCell to Controllera

[OBJC]   View plain  copy  // controllera  has a uitableview,  There are multiple lines in the UITableView Uitableviecell,cell with a button  //  Controllera:    = [cell convertRect:cell.btn.frame toView:self.view];   or    CGRect  rc = [self.view convertRect:cell.btn.frame fromView:cell];  //  This RC is btn in Controllera rect      or when known btn:   cgrect rc = [ btn.superview convertrect:btn.frame toview:self.view];   or    CGRect rc =  [self.view convertrect:btn.frame fromview:btn.superview];  

Related Article

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.