将 UIViews 作为子视图添加到 UIViewController [关闭]
Posted
技术标签:
【中文标题】将 UIViews 作为子视图添加到 UIViewController [关闭]【英文标题】:Add UIViews as subviews to UIViewController [closed] 【发布时间】:2014-05-28 17:41:15 【问题描述】:我用一个 Xib 文件创建了 2 个 UIView。我需要如何将它们添加到UIViewController
?
【问题讨论】:
到目前为止你做了什么来尝试添加子视图? 你需要阅读这个:***.com/questions/how-to-ask 【参考方案1】:在 View Controller 中导入 firstView 并执行以下操作:
firstView *firstView = [[firstView alloc] init];
或者这个:
UIView *firstView = [[[NSBundle mainBundle] loadNibNamed:@"firstView" owner:self options:nil] firstObject];
然后,这个:
[self.view addSubview:firstView];
如果你需要访问firstView的子视图,你需要在firstView类中为你要访问的子视图设置一个标签:
[subview setTag:100];
然后您在 View Controller 中检索该视图,如下所示:
UIView *subView = [firstView viewWithTag:100];
【讨论】:
以上是关于将 UIViews 作为子视图添加到 UIViewController [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
如何将 UIViews 添加到我的 contentView (AwakeFromNib)
在 Interface Builder 中,如何将 UIViews 添加到属于我创建的自定义视图的子视图?
是否可以将 GestureRecognizer 添加到自定义 UIView 子视图中的标签