gpt4 book ai didi

ios - 在自定义 UITableViewHeaderFooterView 上添加一个按钮

转载 作者:行者123 更新时间:2023-11-29 00:17:22 26 4
gpt4 key购买 nike

我正在尝试以编程方式在自定义 UITableViewHeaderFooterView 类上添加一个按钮,如下所示,它没有出现。

我想知道我遗漏了什么或做错了什么?

- (instancetype)initWithReuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithReuseIdentifier:reuseIdentifier]) {

UIButton * clickBtn = [[UIButton alloc]initWithFrame:CGRectMake(self.contentView.bounds.size.width-50, 0, 50, 50)];
clickBtn.imageView.image = [UIImage imageNamed:@"carat-open.png"];
[self.contentView addSubview:clickBtn];
}
return self;
}

最佳答案

在此函数内创建UIButton,并将按钮作为 subview 添加到标题 View

 - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{

UIButton * clickBtn = [[UIButton alloc]initWithFrame:CGRectMake(self.contentView.bounds.size.width-50, 0, 50, 50)];
clickBtn.imageView.image = [UIImage imageNamed:@"carat-open.png"];

UIView *headerView = [[UIView alloc] init];
[headerView addSubview:clickBtn];
headerView.backgroundColor=[UIColor colorWithRed:0.95 green:0.95 blue:0.95 alpha:1.0];
return headerView;
}

关于ios - 在自定义 UITableViewHeaderFooterView 上添加一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44992711/

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