gpt4 book ai didi

ios - 在底部为 UITableView 添加页脚

转载 作者:可可西里 更新时间:2023-11-01 03:47:28 29 4
gpt4 key购买 nike

我正在使用 UITableView 制作幻灯片菜单,菜单上有 2 个选项,我想在底部放置一个按钮,如下图所示:

enter image description here

我试着这样做添加一个 tableFooterView 那样。

UIView *footerView  = [[UIView alloc] initWithFrame:CGRectMake(0, 500, 320, 70)];
footerView.backgroundColor = [UIColor blackColor];
self.tableView.tableFooterView = footerView;

但是, View 出现在第二个单元格之后,但我希望它位于底部。

感谢您的帮助。

最佳答案

不,您不应该添加任何空单元格,那只是 hacky。如果你真的需要按钮在底部,你应该使用 layoutSubviews 来控制 tableView 和 footerView 的框架。

- (void)layoutSubviews
{
[super layoutSubviews];
self.tableView.frame = // top 80% of the screen
self.footerView.frame = // bottom 20% of the screen
}

关于ios - 在底部为 UITableView 添加页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14927813/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com