转换坐标系

  1. // controllerA 中有一个UITableView, UITableView里有多行UITableVieCell,cell上放有一个button  
  2. // 在controllerA中实现:  
  3. CGRect rc = [cell convertRect:cell.btn.frame toView:self.view];  
  4. 或  
  5. CGRect rc = [self.view convertRect:cell.btn.frame fromView:cell];  
  6. // 此rc为btn在controllerA中的rect  
  7.   
  8. 或当已知btn时:  
  9. CGRect rc = [btn.superview convertRect:btn.frame toView:self.view];  
  10. 或  
  11. CGRect rc = [self.view convertRect:btn.frame fromView:btn.superview]; 
原文地址:https://www.cnblogs.com/jingdizhiwa/p/5445619.html