2017-05-09 54 views
0

我使用Tableview來顯示庫選擇單元格上的庫歌曲和歌曲,當歌曲播放迷你播放器彈出時,顯示爲 。最後一個單元格不能正確顯示在桌面視圖中

當時表格視圖的最後一個單元格顯示不正確,它的一部分隱藏在迷你播放器後面,所以請建議。

感謝

+0

郵編代碼,併發送鏈接我要檢查它是哪裏的問題 – parag

+0

我認爲這是實現代碼如下框架的問題。 – KKRocks

+0

你可以分享故事板中tableview的截圖嗎? – KKRocks

回答

0

嘗試設置contentInset

tableView.contentInset = UIEdgeInsetsMake(0, 0, 110, 0); values are - top, left, bottom, right // change as per your needs 

OR

- (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); 
} 
0

速戰速決可以是一個頁腳視圖添加到您的tableview。使頁腳視圖高度與您的迷你播放器相同。根據需要自定義頁腳視圖,或者使頁腳視圖背景顏色清除,以避免看到背景顏色。

相關問題