UITableView滚动到底部但顶部是正常的

时间:2017-04-27 02:50:16

标签: uitableview uiviewcontroller

添加在viewDidLoad

  

navgationBar.translucent = N0,iOS 10.3,xcode 8.3

     

 - (void)__setUpUI{
UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height - 64)];
[tableView registerNib:[UINib nibWithNibName:@"DXGroupMasterLikesCell" bundle:[NSBundle mainBundle]] forCellReuseIdentifier:NSStringFromClass([DXGroupMasterLikesCell class])];
_tableView = tableView;
_tableView.backgroundColor = [UIColor orangeColor];
tableView.delegate = self;
tableView.dataSource = self;
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
[self.view addSubview:tableView];}

like this

但如果我在[self.view addSubview:[UIView new]];之前设置[self.view addSubview:tableView];一切正常

有人知道为什么吗?

0 个答案:

没有答案