1

我有一个 UIView,我想向它添加另一个 UIView 作为子视图。

这就是我所做的:

- (IBAction)showVerification:(id)sender {
    [self.viewM addSubview: self.verificationView];
    [self.labelVerification setText:offerId];
}

这是结果:

在此处输入图像描述

你能帮助我吗?是否不可能将 UIView 添加到 .xib 文件中的另一个?

4

3 回答 3

1

See my images i have done same and nothing is moved in it

Two views

Image 1

After combining them just drag and drop it in side the view

Image 2

And in Simulator

Image 3

于 2012-10-16T12:49:50.937 回答
1

您可以以编程方式进行:

UIView* view2 = [[UIView alloc]initWithFrame:CGRectMake(30, 100, 1024-30, 768-110)];
[self.view addSubView:view2];
于 2012-10-16T12:16:53.480 回答
0

您可以按照 Wolvorin 的建议进行操作,或者为该左视图设置一个outlet,然后将其添加到按钮事件的视图中

于 2012-10-16T12:58:32.863 回答