iOS convertPoint: 与 convertRect:的使用理解

   1.convertRect的使用
   a.[A convertRect:B.frame  toView:C];
    计算A上的B视图在C中的位置CGRect 
   b.[A convertRect:B.frame  fromView:C];
    计算C上的B视图在A中的位置CGRect

  2.convertPoint的使用
  a.[A convertPoint:B.center toView:C];
  计算A上的B视图在C中的位置CGPoint
  b.[A convertPoint:B.center fromView:C];
  计算C上的B视图在A中的位置CGPoint

你可能感兴趣的:(iOS convertPoint: 与 convertRect:的使用理解)