以编程方式将两个 UITableView 堆叠在一个视图中?
我想在一个视图中堆叠两个 UITableView。我可以在界面生成器中执行此操作,但是,我想在代码中以编程方式执行此操作。
在我的主 UIViewController 中,我在 viewDidLoad 方法中创建了两个 UITableViewController。 我一开始以为我可以通过以下方式做到这一点:
[self.view addSubView:controller1.view];
[self.view addSubView:controller2.view];
但这仅显示第二个视图。我也尝试过:
[self.view addSubview:controller1.view];
[controller1.view addSubview:controller2.view];
但它仍然没有执行上面界面生成器所做的操作。
更新
我想完成这个:
这是我在界面生成器中所做的:
但在代码中。
i'd like to stack two UITableViews in a single view. i can do this in interface builder, however, i would like to do this programmatically in code.
in my main UIViewController, i create two UITableViewControllers in my viewDidLoad method.
i thought at first i could do this by:
[self.view addSubView:controller1.view];
[self.view addSubView:controller2.view];
but this only shows the 2nd view. i've also tried:
[self.view addSubview:controller1.view];
[controller1.view addSubview:controller2.view];
but it still doesn't do what interface builder did above.
UPDATE
i want to accomplish this:
which i did in interface builder:
but in code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
创建两个 UITableViewController 的原因是什么?只需创建两个 UITableView 对象并操作它们。
What is the reason to create two UITableViewControllers? Simply create two UITableView objects and manipulate them.
重叠?为了看到它们,你是否设置了不同的框架?
Overlapped? Did you set their frame different, in order to see them?
在矩形中,值是从左上角开始测量的:x、y、w、h。
In a rectangle the values are measured from the upper left corner: x,y,w,h.