我正在尝试缩短 UITableView 的高度并在下方放置一个按钮。我尝试使用此代码:
// set the frame size
CGRect frame = self.view.frame;
frame.size.height = 355;
self.view.frame = frame;
//set up the button
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self
action:@selector(buttonPress:)
forControlEvents:UIControlEventTouchUpInside];
[button setTitle:@"Add to Current Workout" forState:UIControlStateNormal];
button.frame = CGRectMake(20, 365, 280, 40);
[self.view addSubview:button];
在 viewDidAppear 方法中,但所发生的只是视图变短了,当我向下滚动时,按钮覆盖了我的一个单元格(它也随着 tableview 滚动)。如何更改 tableview 的高度并在视图下方有一个按钮?