ios怎么设置sectionheader的高度

 我来答
小宝啊baby
2016-04-01 · TA获得超过140个赞
知道小有建树答主
回答量:386
采纳率:0%
帮助的人:322万
展开全部
千峰扣丁学堂为您解答:
func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
if section == 0 {
return 20
}
return 20
}
func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
// var header : UIView! = UIView()
var header : UILabel! = UILabel()
header.text = "\(section)"
header.textAlignment = NSTextAlignment.Center
header.frame = CGRectMake(0, 0, CGRectGetWidth(tableView.bounds), 1)
return header
}
/// 注意这下面的两句话才能真正的让header的高度一致
func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
var header : UIView! = UIView()
header.frame = CGRectMake(0, 0, CGRectGetWidth(tableView.bounds), 1)
return header
}
func tableView(tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 1
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式