iOS 7 Custom TableView Is Under TabBar

后端 未结 16 1652
萌比男神i
萌比男神i 2020-12-13 04:31

Im trying port my app to iOS7, but my custom TableViewController is showing the last row (cell) under the TabBar :(

Im searchi

16条回答
  •  遥遥无期
    2020-12-13 05:12

    The problem was masked using:

    -(void)viewDidLayoutSubviews
    {
        [super viewDidLayoutSubviews];
        self.tableView.contentInset = UIEdgeInsetsMake(0, 0, 112, 0);
    }
    

    But it doesn't solve, because on each iPhone and on each app tableview i have a different space on bottom.

    So this is a poor solution.

    I dont know a way to solve it.

提交回复
热议问题