zoukankan      html  css  js  c++  java
  • 转换坐标系

    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]; 
  • 相关阅读:
    Java-循环语句和条件语句
    Java-变量函数 上
    python
    python
    python
    Xpath
    python + selenium
    python + selenium
    python + selenium
    Web
  • 原文地址:https://www.cnblogs.com/jingdizhiwa/p/5445619.html
Copyright © 2011-2022 走看看