UITableView
checkmark
起こって、私はのUITableViewは問題
コード
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return dizi.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = UITableViewCell(style: UITableViewCellStyle.default, reuseIdentifier: "cell")
cell.textLabel?.text=dizi[indexPath.row]
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
{
if tableView.cellForRow(at: indexPath)?.accessoryType == UITableViewCellAccessoryType.checkmark
{
tableView.cellForRow(at: indexPath)?.accessoryType = UITableViewCellAccessoryType.none
}
else
{
tableView.cellForRow(at: indexPath)?.accessoryType = UITableViewCellAccessoryType.checkmark
}
}
私はそれをどのように修正することができますスクロールされたときに選択解除される解除しますか?私を助けてください。
てくれてありがとう更新そんなにはtiskender2 @ – Tiskender2
を解決ありがとう:常に歓迎バディを:)私は私ができる嬉しいです助けてください:)ハッピーコーディング –