我試圖創建TableView
與custom TableView cell
與multiple XIB
一個爲Image
,其他爲Text + Video
。但高度必須在界面中爲XIB預定義。我們可以使用動態高度的UITableViewCell具有XIB嗎?
那麼我怎麼能有我的UITableViewCell與dynamic height
的XIB?
我試圖創建TableView
與custom TableView cell
與multiple XIB
一個爲Image
,其他爲Text + Video
。但高度必須在界面中爲XIB預定義。我們可以使用動態高度的UITableViewCell具有XIB嗎?
那麼我怎麼能有我的UITableViewCell與dynamic height
的XIB?
在viewDidLoad
試試這個:
yourTableView.estimatedRowHeight = yourTableViewCellHeight yourTableView.rowHeight = UITableViewAutomaticDimension
它的工作它不再需要。謝謝:-) –
@lokeshguddu請將此答案標記爲此主題的正確答案,以「關閉」討論,謝謝。 –
@AlessandroOrnano我該怎麼做?我沒有看到這樣做的選擇。 –
你需要的UITableView委託方法'的tableView指定高度:heightForRowAtIndexPath:' – PiyushRathi
@PiyushRathi因爲iOS的8.x的 –