美文网首页
UITableView group样式总结

UITableView group样式总结

作者: 不重要_879c | 来源:发表于2022-08-17 15:22 被阅读0次

使用Group样式时顶部出现空白区

方法1

CGRect frame=CGRectMake(0, 0, 0, CGFLOAT_MIN);

self.tableView.tableHeaderView=[[UIView alloc]initWithFrame:frame];

方法2

-(void)viewDidAppear:(BOOL)animated

{

    [superviewDidAppear:animated];

    self.tableView.contentInset = UIEdgeInsetsZero;

}

相关文章

网友评论

      本文标题:UITableView group样式总结

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