iOS UITableView GroupedStyle 消除默認sectionFooter
UITableView有兩個Style:Plain和Grouped
Plain下sectionHeader和setionFooter具有黏性(Sticky),Grouped下無黏性但有默認的sectionFooter且無法通過簡單的return Height 0 或者return nil view來消除它,如果在tableView:heightForFooterInSection:中return 0則默認會返回10.0…
解決方案:使用CGFLOAT_MIN代替0
– (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
return CGFLOAT_MIN;
}
发表评论或回复