更改iPhone应用程序中小部件的高度排序

时间:2011-12-03 23:10:42

标签: iphone uiview uisegmentedcontrol

在我的应用中,我添加了UIView作为新的子视图,但它覆盖了UISegmentedControl。我想知道是否有办法将UISegmentedControl移回顶部以使其完全可见?

1 个答案:

答案 0 :(得分:3)

如果你看一下docs for UIView,你会发现有几种选择:

  • -insertSubview:belowSubview:
  • -insertSubview:atIndex:
  • -bringSubviewToFront:
  • -exchangeSubviewAtIndex:withSubviewAtIndex:

另外,请查看View Architecture Fundamentals,了解视图如何相互关联。