0
內自定義的UITableView細胞我有一個UITableviewController
這是我在Swift4編程方式創建。 一個UITableViewController頁腳
圖中的顯着矩形是我footerview與UITableView
內
override func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
let tableFooterView = UITableView()
tableFooterView.rowHeight = 100
return tableFooterView
}
override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 365
}
我要加載自定義細胞在footerview的實現代碼如下細胞。我嘗試使用這個下面的代碼
tableFooterView.dequeueReusableCell(withIdentifier: emptyCellIdentifier) as! EmptyTableViewCells
,但我得到的錯誤 -
fatal error: unexpectedly found nil while unwrapping an Optional value
請幫
@NasimRony沒有它幫助? –