我希望能够在另一个已经存在的 UIView 下添加Subview,我该怎么做?我无法找到任何关于此的内容。
问问题
11070 次
3 回答
28
UIView 方法怎么样:insertSubview:belowSubview:
.
它就在 UIView 文档的“管理视图层次结构”部分。
于 2012-11-15T17:48:54.977 回答
8
您可以使用 :
[self.view insertSubview:topview belowSubview:buttomView];
于 2012-11-15T17:50:15.287 回答
1
在斯威夫特:
self.view.insertSubview(newView, belowSubview: yourLabel)
于 2021-02-10T17:37:37.070 回答