0
我正在做一個教程,現在正在構建一個單元格表格,我有一個問題。在第二個函數tableView下面...什麼是indexPath?UITableView - 什麼是indexPath?
更重要的是,每次函數被調用時,程序如何知道更新通過indexPath傳遞的值?
var rowNumber = 0
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 50
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let rowCell = UITableViewCell(style: UITableViewCellStyle.default, reuseIdentifier: "Cell")
rowCell.textLabel?.text = String(indexPath.row + 1)
return rowCell
}
您是否閱讀過「UITableView」的參考文檔?它有一個關於什麼'IndexPath'('NSIndexPath')的部分。另請參閱「IndexPath」的文檔。 – rmaddy
是的,我已閱讀文檔,否則我不會問。不過謝謝。 – user7024499