根據目錄動態自動調整高度UITableView
。 我嘗試以下解決方案,但我沒有工作:SWIFT UITableview根據內容設置自動高度 - Xcode - iOS
dispatch_async(dispatch_get_main_queue()) {
//This code will run in the main thread:
CGRect frame = self.tableView.frame;
frame.size.height = self.tableView.contentSize.height;
self.tableView.frame = frame;
}
什麼,如果2個不同的表視圖在一個控制器上存在嗎? – Mina