gpt4 book ai didi

iphone - 在表格 View 的底部添加一个按钮

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:59:54 24 4
gpt4 key购买 nike

有没有更好的方法在表格 View 的底部添加一个按钮,如下所示?我发现的解决方案涉及在现有部分的页眉或页脚中插入一个按钮,这对我来说似乎有点老套。

enter image description here

最佳答案

创建一个新的 UIView 并将 View 设置为 tableview 的页脚 View ,并将按钮添加为新 UIView 的 subview 。此外,在 heightForFooterInSection 方法中设置页脚的高度。

viewDidLoad 中的类似内容,

- (void)viewDidLoad
{
UIView *newView = [[UIView alloc]initWithFrame:CGRectMake(10, 70, 300, 45)];
submit = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[submit setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
//[submit setTitleColor:[UIColor colorWithWhite:0.0 alpha:0.56] forState:UIControlStateDisabled];
[submit setTitle:@"Login" forState:UIControlStateNormal];
[submit.titleLabel setFont:[UIFont boldSystemFontOfSize:14]];
[submit setFrame:CGRectMake(10.0, 15.0, 280.0, 44.0)];
[newView addSubview:submit];

[self.tableView setTableFooterView:newView];

[super viewDidLoad];

}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {

return 50;
}

关于iphone - 在表格 View 的底部添加一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9932032/

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