美文网首页
iOS tableView 底部显示"没有更多记录了"

iOS tableView 底部显示"没有更多记录了"

作者: 石虎132 | 来源:发表于2018-09-18 12:43 被阅读0次

 联系人:石虎 QQ:1224614774昵称:嗡嘛呢叭咪哄

                    QQ群:807236138群称:iOS 技术交流学习群

一、概念

- (UIView*)tableView:(UITableView*)tableView viewForFooterInSection:(NSInteger)section{

UIView* sh_footerView = [[UIViewalloc] initWithFrame:CGRectMake(0,0, kScreen_Width   ,60.0)];

UILabel*sh_label = [[UILabelalloc ]init ];

sh_label.frame =CGRectMake(20,20, kScreen_Width-40,20);

sh_label.text =@"----没有更多记录了----";

sh_label.textColor = [UIColorlightGrayColor];

sh_label.font = [UIFontsystemFontOfSize:15];

sh_label.textAlignment =NSTextAlignmentCenter;

        [sh_footerView addSubview:sh_label];

returnsh_footerView;

returnnil;

}

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

if(section ==0) {

return0.1;

}elseif(section ==1){

return4;

}else{

return0.000001f;// 设置为0.0001  是为了不悬浮

    }

return0.1;

}

谢谢!!!

相关文章

网友评论

      本文标题:iOS tableView 底部显示"没有更多记录了"

      本文链接:https://www.haomeiwen.com/subject/vtjunftx.html