我想获取表视图单元格上显示的所有索引路径int。现在单元格上有数字1-5。这就是应该附加到数组emptyA的内容。我曾尝试在索引路径上进行压缩,但这不起作用。我的所有代码都在下面,没有使用故事板。代码应该在视图中追加数组,但已加载。
import UIKit
class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {
var emptyA = [Int]()
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 5
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = "([indexPath.row+1])"
return cell
}
var theTable = UITableView()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
view.addSubview(theTable)
theTable.frame = CGRect(x: 100, y: 100, width: 100, height: 300)
theTable.delegate = self
theTable.dataSource = self
theTable.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
//need this part
emptyA.append()
}
}
您可以在tableView(_:cellForRowAt:)
方法的emptyA
中添加indexPath.row
,即
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = "([indexPath.row+1])"
if !emptyA.contains(indexPath.row+1) {
emptyA.append(indexPath.row+1)
}
return cell
}