美文网首页
去掉UITableView风格为UITableViewStyle

去掉UITableView风格为UITableViewStyle

作者: JXY1228 | 来源:发表于2017-03-23 10:32 被阅读0次

@property (nonatomic, strong) UITableView * mainTableView;

//将tableHeaderView设置非常小

UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, _mainTableView.bounds.size.width, CGFLOAT_MIN)];

_mainTableView.tableHeaderView = headerView;

self.automaticallyAdjustsScrollViewInsets = NO; //禁止自动调整 ScrollView Insets

相关文章

网友评论

      本文标题:去掉UITableView风格为UITableViewStyle

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