在我的应用中,我添加了UIView
作为新的子视图,但它覆盖了UISegmentedControl
。我想知道是否有办法将UISegmentedControl
移回顶部以使其完全可见?
答案 0 :(得分:3)
如果你看一下docs for UIView,你会发现有几种选择:
-insertSubview:belowSubview:
-insertSubview:atIndex:
-bringSubviewToFront:
-exchangeSubviewAtIndex:withSubviewAtIndex:
另外,请查看View Architecture Fundamentals,了解视图如何相互关联。