iOS开发,重用header或者footerview时,不能成功设置背景色怎么办

 我来答
xmy0405
2015-10-17 · 超过37用户采纳过TA的回答
知道小有建树答主
回答量:77
采纳率:0%
帮助的人:59.1万
展开全部
1、你可能没有返回,
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
这个方法看看返回的是什么,如果没有返回,默认是没有header的,还有这个方法
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
设置header高度的,这个可以不用
2、如果1已经设置了,那么打断点看看有没有进方法
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
这个方法是用来设置header的,
3、如果1和2都没问题,给你段代码你放到方法
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
去试试
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(10, 0, tableView.bounds.size.width, tableView.sectionHeaderHeight)];

view.backgroundColor = [[UIColor alloc] initWithRed:227/255.f green:243/255.f blue:252/255.f alpha:1];
return view;

要是还不行的话,再考虑其他的问题吧!
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式