我希望能够在另一个已经存在的UIView下面添加Subview,我该怎么做?我无法找到任何相关内容。
答案 0 :(得分:23)
UIView方法怎么样:insertSubview:belowSubview:
。
它就在UIView文档的"Managing the View Hierarchy"部分中。
答案 1 :(得分:6)
你可以使用:
[self.view insertSubview:topview belowSubview:buttomView];
答案 2 :(得分:0)
在 Swift 中:
self.view.insertSubview(newView, belowSubview: yourLabel)