我有一个 UIView,我在其中安排了 UIButton。我想找到那些 UIButtons 的位置。
我知道这buttons.frame
会给我职位,但它只会给我与其直接上级相关的职位。
关于 UIButtons 超级视图的超级视图,有什么方法可以找到这些按钮的位置吗?
例如,假设有一个名为“firstView”的 UIView。
然后,我有另一个 UIView,“secondView”。这个“SecondView”是“firstView”的子视图。
然后我将 UIButton 作为“secondView”上的子视图。
->UIViewController.view
--->FirstView A
------->SecondView B
------------>Button
现在,有什么方法可以找到那个 UIButton 相对于“firstView”的位置?