重叠iOS组件viewController

时间:2013-10-15 01:33:27

标签: ios cocoa-touch

我的View Controller中有一个UITableView,我想放置两个按钮(一个在左边,另一个在UITableView的右边),重叠这个组件。

我该怎么做?如果我在其中一个边放置一个按钮,UITableView会缩小以适应新按钮,但我想在桌面上查看它。

1 个答案:

答案 0 :(得分:1)

创建按钮作为视图控制器视图的子视图(这在代码中最容易做到,因为界面构建器会自动将按钮添加为UITableView的子视图

UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(40,40,80,80)]; //Whatever your need and repeat for your second button
[self.view addSubview:button];