将子视图发送到后面

时间:2012-09-29 01:26:48

标签: iphone uiview subview

我知道一个能够将视图带到前面的功能。

  [self.view bringSubviewToFront:myView];

我想知道是否有一个功能可以将子视图发送到后面。

1 个答案:

答案 0 :(得分:39)

尝试,

目标C:

[self.view sendSubviewToBack: yourView];

<强>夫特:

self.view.sendSubview(toBack: yourView)