我有一個表,我斯威夫特項目這樣斯威夫特UITableViewAutomaticDimension不工作
var tableView: UITableView!
tableView = UITableView()
tableView.dataSource = self
tableView.delegate = self
tableView.rowHeight = UITableViewAutomaticDimension
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return postTexts.count
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 250;
}
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 5
}
我希望我的tableview的高度自動因此,我使用 UITableViewAutomaticDimension
,但它仍然呈現近一半的細胞寬
@ RajeshkumarR然後我如何改變細胞的高度? –
「我想要我的桌面視圖的高度」是不是指細胞高度?我建議添加屏幕截圖,瞭解您獲得的輸出結果。 –
@AhmadF我確實添加了圖片 –