0

我的视图控制器中有一个 UITableView,我想放置两个按钮(一个在 UITableView 的左侧,另一个在 UITableView 的右侧),重叠这个组件。

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

4

1 回答 1

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];
于 2013-10-15T01:44:06.437 回答