iphonex 的表示图全屏
2017-12-08 本文已影响17人
赤焰军少帅林殊
-
(UITableView *)tableView
{
if (!_tableView) {
UITableView *tableView = [[UITableView alloc] init];
tableView.backgroundColor = [UIColor colorWithHex:0xececec];
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
tableView.tableFooterView = [UIView new];
tableView.delegate = self;
tableView.dataSource = self;
[tableView registerClass:[WarmCell class] forCellReuseIdentifier:WarmCellIdentifier];
[self.view addSubview:tableView];
[self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.view).insets(UIEdgeInsetsMake(0,0,0,0));
}];
self.tableView.hidden = YES;_tableView = tableView;
}
return _tableView;
}