我使用Tableview
来显示库中的歌曲,并且选择了单元格时播放的歌曲,
当歌曲播放器在底部弹出迷你播放器时。
那时,表格视图的最后一个单元格无法正确显示,其某些部分隐藏在迷你播放器后面,因此请提出建议。
谢谢
最佳答案
尝试设置contentInset
tableView.contentInset = UIEdgeInsetsMake(0, 0, 110, 0); values are - top, left, bottom, right // change as per your needs
要么
- (void)viewDidLayoutSubviews {
CGFloat navbarHeight = 44; // this is supposed to be 64 but you should dynamically calculate it or better use constraints
CGRect tempFrame = self.view.frame;
self.tableView.frame = CGRectMake(tempFrame.origin.x, tempFrame.origin.y, tempFrame.size.width, tempFrame.size.height - navbarHeight);
}