大部分内容转自
http://greenchiu.github.io/blog/2014/09/01/memo-the-uiview-convertrect/
-
如下两个方法的区别:
-
convertRect:fromView:
-
convertRect:toView:
-
举个例子:
image
当碰到需要将一个BView
中的是一个CView
位置(CView's frame)
,要被转移到另一个AView
上的实惠,要让视觉上的位置保持不变,配合下面的图片来服用。
图中有三个View
分别为A
,B
,C
B
是A
的subView
,
C
是B
的subView
,
这时我们要将C
转移到A
,
参考下图(我先把B
隐藏起来)
这时就可以使用convertRect:toView:
来取得新的frame给C
newFrame = [viewB convertRect:viewC.frame toView:viewA];
image
在将
C
直接转移到A
后(C
是A
的subView
),我们想把B
加入到C
里面,视觉位置依然保持不变,这时B
的frame
是对应A
的,想要取得B在C应该有的位置,就使用convertRect:fromView
newFrame = [viewC convertRect:viewB.frame fromView:viewA];
image
以下是一些常用的转换方法:
// 将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值
- (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view;
// 将像素point从view中转换到当前视图中,返回在当前视图中的像素值
- (CGPoint)convertPoint:(CGPoint)point fromView:(UIView *)view;
// 将rect由rect所在视图转换到目标视图view中,返回在目标视图view中的rect
- (CGRect)convertRect:(CGRect)rect toView:(UIView *)view;
// 将rect从view中转换到当前视图中,返回在当前视图中的rect
// 例如把UITableViewCell中的subview(btn)的frame转换到VC中
- (CGRect)convertRect:(CGRect)rect fromView:(UIView *)view;
例如:controllerA中有一个UITableView,UITableView里有多行UITableVieCell,cell上放有一个button
// 在controllerA中实现:
CGRect rc = [cell convertRect:cell.btn.frame toView:self.view];
或者
CGRect rc = [self.view convertRect:cell.btn.frame fromView:cell];
网友评论