gpt4 book ai didi

iphone - 添加一个 UIButton 到 tableView headerView

转载 作者:行者123 更新时间:2023-11-28 20:36:23 25 4
gpt4 key购买 nike

我正在尝试将 UIButton 添加到 tableView,但是当我执行以下操作时:

UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.frameWidth, 200)];

UIButton *addSource = [UIButton buttonWithType:UIButtonTypeCustom];
[addSource addTarget:self action:@selector(addBoard:) forControlEvents:UIControlEventTouchUpInside];
[addSource setImage:[UIImage imageNamed:@"addsource.png"] forState:UIControlStateNormal];
[addSource setBackgroundColor:[UIColor grayColor]];
[headerView addSubview:addSource];

self.tableView_.tableHeaderView = headerView;

我在那里没有看到 UIButton。当我尝试使用 UILabel 时,它就在那里。这是为什么?

最佳答案

您的 addSource 按钮没有任何框架。

关于iphone - 添加一个 UIButton 到 tableView headerView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10379357/

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