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

由于TableView的Section的头部和尾部高度设置的不规范引起的部分Section中的图片无法正常显示

时间:2016-10-19 19:23:10      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

当tableview的组的头部和尾部的高度设置如下时:

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

    return 10;

}

/**

    组脚高度

 */

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{

    return 0.1;

}

出现图片显示不正常现象如下:

技术分享

当tableview的组的头部和尾部的高度规范设置如下时:

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

    return 9.9;

}

/**

    组脚高度

 */

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{

    return 0.1;

}

出现图片显示正常:

技术分享

 

由于TableView的Section的头部和尾部高度设置的不规范引起的部分Section中的图片无法正常显示

标签:

原文地址:http://www.cnblogs.com/llhlj/p/5978070.html

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