码迷,mamicode.com
首页 > 其他好文 > 详细

tableView -- tips

时间:2016-03-23 15:36:26      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

1. 如果发现TableView的第一个sectionHeader不显示, 那么可以断定, 你没有用代理方法来设置 sectionHeader的高度!

  

1 #pragma mark - delegate
2 - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
3 {
4     return 200;
5 }

  如此设置, 保证你的sectionHeader,马上出现!

2. 

tableView -- tips

标签:

原文地址:http://www.cnblogs.com/guangleijia/p/5311349.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!