Translate

2015年7月17日 星期五

得到UIView中某个非子视图在UIView中的位置

轉帖文章
因為很少用到但是又記不起來特地來記錄一下
使用 convertRect: fromView: 或者 convertRect: toView: 例如一个视图控制器的view中有一个UITableView,UITableView的某个cell中有个UITextField,想要得到UITextField在view中的位置,就要靠上面的两个方法了。 用 CGRect rect = [self.view convertRect:textField.frame fromView:textField.superview]; 或者 CGRect rect = [textField.superview convertRect:textField.frame toView:self.view]; 进行转换都可以。

沒有留言:

張貼留言