我正在使用 a 制作幻灯片菜单,菜单UITableView
上有 2 个选项,我想在底部放置一个按钮,如下图所示:
我尝试这样做添加一个tableFooterView
这样的。
UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 500, 320, 70)];
footerView.backgroundColor = [UIColor blackColor];
self.tableView.tableFooterView = footerView;
但是,视图出现在第二个单元格之后,但我希望它位于底部。
感谢帮助。