【发布时间】:2014-12-12 06:48:46
【问题描述】:
如何在 xcode 中添加 UIView 作为子视图?我希望将 w 子视图添加到按钮本身?
谢谢
【问题讨论】:
标签: uiview
如何在 xcode 中添加 UIView 作为子视图?我希望将 w 子视图添加到按钮本身?
谢谢
【问题讨论】:
标签: uiview
UIView *someView;
// ... set value of someView to the parent you want
UIView *childView;
// ... set value of someView to the parent you want
[someView addSubview:childView];
【讨论】: