我有一个 UIView,我想向它添加另一个 UIView 作为子视图。
这就是我所做的:
- (IBAction)showVerification:(id)sender {
[self.viewM addSubview: self.verificationView];
[self.labelVerification setText:offerId];
}
这是结果:
你能帮助我吗?是否不可能将 UIView 添加到 .xib 文件中的另一个?
我有一个 UIView,我想向它添加另一个 UIView 作为子视图。
这就是我所做的:
- (IBAction)showVerification:(id)sender {
[self.viewM addSubview: self.verificationView];
[self.labelVerification setText:offerId];
}
这是结果:
你能帮助我吗?是否不可能将 UIView 添加到 .xib 文件中的另一个?
See my images i have done same and nothing is moved in it
Two views
After combining them just drag and drop it in side the view
And in Simulator
您可以以编程方式进行:
UIView* view2 = [[UIView alloc]initWithFrame:CGRectMake(30, 100, 1024-30, 768-110)];
[self.view addSubView:view2];
您可以按照 Wolvorin 的建议进行操作,或者为该左视图设置一个outlet
,然后将其添加到按钮事件的视图中