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

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

当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中的图片无法正常显示