-
點(Point)
(1)- (CGPoint)convertPoint:(CGPoint)point fromView:(UIView *)view;
/* * 描述:將坐標(biāo)點point從view中轉(zhuǎn)換到當(dāng)前調(diào)用者視圖中,返回在當(dāng)前視圖中的坐標(biāo)點 * 參數(shù):point -> 一個視圖(view)坐標(biāo)系上的點 * 參數(shù):view -> 當(dāng)前調(diào)用者視圖梭稚。如果是圖是nil豪硅,那么這個方法將嘗試轉(zhuǎn)換基于窗 * 口的坐標(biāo)系。否則視圖和那個接收者必須屬于同一個UIWindow對象摆霉。 * 返回值: 一個轉(zhuǎn)換到接收者(調(diào)用者)坐標(biāo)系的點 */ 用法: // controllerA 中有一個UITableView, UITableView里有多行UITableVieCell,現(xiàn)在要把UITableViewCell中的某個點Point轉(zhuǎn)換到controllerA的view中 // 在controllerA中實現(xiàn): CGRect point = [self.view convertPoint:aPoint fromView:cell]; // 此 point 為在 controllerA 的 view 中的 point
(2)- (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view;
/* * 描述:將坐標(biāo)點point由point所在視圖轉(zhuǎn)換到目標(biāo)視圖view中奔坟,返回在目標(biāo)視圖view中的坐標(biāo)點 * 參數(shù):point -> 一個在當(dāng)前視圖坐標(biāo)系中的點 * 參數(shù):view -> 目標(biāo)視圖對象view携栋。如果視圖是nil,那么這個方法將會轉(zhuǎn)換成基于窗 * 口的坐標(biāo)咳秉。否則視圖和接收者都要屬于同一個UIWindow對象婉支。 * 返回值:一個轉(zhuǎn)換到接收者(view)坐標(biāo)系的點 */ 用法: // controllerA 中有一個UITableView, UITableView里有多行UITableVieCell,現(xiàn)在要把UITableViewCell中的某個點Point轉(zhuǎn)換到controllerA的view中 // 在controllerA中實現(xiàn): CGRect point = [cell convertPoint:aPoint toView:self.view]; // 此 point 為在 controllerA 的 view 中的 point
-
面(Rect)
(1)- (CGRect)convertRect:(CGRect)rect fromView:(UIView *)view;
/* * 描述:將rect從view中轉(zhuǎn)換到當(dāng)前視圖中澜建,返回在當(dāng)前視圖中的frame * 參數(shù):rect -> 一個視圖在當(dāng)前所在視圖坐標(biāo)系中的frame * 參數(shù):view -> 當(dāng)前坐標(biāo)系視圖對象向挖。如果視圖是nil,那么這個方法將會基于窗口來轉(zhuǎn)換炕舵。 * 否則視圖和接收者必須都屬于同一個UIWindow對象 * 返回值:The converted rectangle -> 一個轉(zhuǎn)換過的frame */ 用法: // controllerA 中有一個UITableView, UITableView里有多行UITableVieCell何之,cell上放有一個button,現(xiàn)在要把UITableViewCell中的subview(btn)的frame轉(zhuǎn)換到controllerA的view中 // 在controllerA中實現(xiàn): CGRect rect = [self.view convertRect:cell.btn.frame fromView:cell]; // 或當(dāng)已知btn時: CGRect rect = [self.view convertRect:btn.frame fromView:btn.superview]; // 此 rect 為 btn 在 controllerA 的 view 中的 rect
(2)- (CGRect)convertRect:(CGRect)rect toView:(UIView *)view;
/* * 描述:將rect由rect所在視圖轉(zhuǎn)換到目標(biāo)視圖view中溶推,返回在目標(biāo)視圖view中的frame * 參數(shù):rect -> 一個視圖在當(dāng)前所在視圖坐標(biāo)系中的frame * 參數(shù):view -> 要轉(zhuǎn)換過去的目標(biāo)視圖對象。如果這個是視圖是nil,這個方法將會基于窗口坐標(biāo)系來轉(zhuǎn)換蒜危。 * 否者視圖和接收者必須屬于同一個UIwindow對象 * 返回值:The converted rectangle -> 一個轉(zhuǎn)換過的frame */ 用法: // controllerA 中有一個UITableView, UITableView里有多行UITableVieCell虱痕,cell上放有一個button辐赞,現(xiàn)在要把UITableViewCell中的subview(btn)的frame轉(zhuǎn)換到controllerA的view中 // 在controllerA中實現(xiàn): CGRect rect = [cell convertRect:cell.btn.frame toView:self.view]; // 或當(dāng)已知btn時: CGRect rect = [btn.superview convertRect:btn.frame toView:self.view]; // 此 rect 為 btn 在 controllerA 的 view 中的 rect
參考文章:http://www.cnblogs.com/pengyingh/articles/2379476.html UIView 中常見的方法總結(jié)