我有一个音乐列表tableView,细胞上的数据来自音乐模型。选择单元格时,我希望将两个标签的颜色从默认的白色更改为红色。音乐模型中有一个名为isSelected的属性,用于指示选定的单元格或not.So,我使用以下代码:
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "MusicTableViewCell", for: indexPath) as! MusicTableViewCell
cell.music = musics[indexPath.row]
cell.numberLabel.text = String(indexPath.row + 1)
if musics[indexPath.row].isSelected == false {
cell.titleLabel.textColor = .white
cell.artistLabel.textColor = .white
cell.speakerImageView.isHidden = true
cell.numberLabel.isHidden = false
} else {
cell.titleLabel.textColor = UIColor(r: 227, g: 0, b: 24)
cell.artistLabel.textColor = UIColor(r: 227, g: 0, b: 24)
cell.speakerImageView.isHidden = false
cell.numberLabel.isHidden = true
musics[indexPath.row].isSelected = true
}
return cell
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if lastSelectedIndexPath != nil {
let cell = tableView.cellForRow(at: lastSelectedIndexPath)! as! MusicTableViewCell
cell.titleLabel.textColor = .white
cell.artistLabel.textColor = .white
cell.speakerImageView.isHidden = true
cell.numberLabel.isHidden = false
musics[lastSelectedIndexPath.row].isSelected = false
}
let cell = tableView.cellForRow(at: indexPath) as! MusicTableViewCell
cell.titleLabel.textColor = UIColor(r: 227, g: 0, b: 24)
cell.artistLabel.textColor = UIColor(r: 227, g: 0, b: 24)
cell.speakerImageView.isHidden = false
cell.numberLabel.isHidden = true
lastSelectedIndexPath = indexPath as IndexPath
currentMusicIndex = indexPath.row
musics[currentMusicIndex].isSelected = true
}
}
我首先单击第二个单元格,然后将表视图滚动到底部,然后单击最后一个单元格,但应用程序将crash.The日志为:意外地在展开可选值时发现为零。
如何解决这个问题?谢谢。
发布于 2017-08-07 22:21:31
覆盖MusicTableViewCell类中的函数
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
if selected {
self.titleLabel.textColor = UIColor(r: 227, g: 0, b: 24)
self.artistLabel.textColor = UIColor(r: 227, g: 0, b: 24)
self.speakerImageView.isHidden = false
self.numberLabel.isHidden = true
} else {
self.titleLabel.textColor = .white
self.artistLabel.textColor = .white
self.speakerImageView.isHidden = true
self.numberLabel.isHidden = false
}
}
覆盖函数
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "MusicTableViewCell", for: indexPath) as! MusicTableViewCell
return cell
}
override func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
let _cell = cell as! MusicTableViewCell
_cell.music = musics[indexPath.row]
_cell.numberLabel.text = String(indexPath.row + 1)
}
您的选择将在MusicTableViewCell中自动设置。
如果应该检测到这一点,请使用.
覆盖didSelectRowAt函数
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print("\(indexPath)")
}
发布于 2017-08-07 22:13:09
在MusicTableViewCell
类中,只需重写isSelected
属性即可。
override var isSelected: Bool{
didSet{
if self.isSelected
{
self.titleLabel.textColor = .white
self..artistLabel.textColor = .white
self.speakerImageView.isHidden = true
self.numberLabel.isHidden = false
}
else
{
self.titleLabel.textColor = UIColor(r: 227, g: 0, b: 24)
self.artistLabel.textColor = UIColor(r: 227, g: 0, b: 24)
self.speakerImageView.isHidden = false
self.numberLabel.isHidden = true
}
}
}
现在,每当您的单元格被选中/取消选中时,此isSelected
属性将相应地自定义单元格。
编辑:
若要保存选定的单元格,以及再次运行应用程序时,需要持久化此数据。有多种方法可以在多个App会话之间持久化数据。您可以使用:
发布于 2017-08-07 22:14:05
检查以下方法以更改“选择”和“取消选择”时的颜色
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCell(withIdentifier: "bell" , for: indexPath)
cell.textLabel?.text = trainingCategories[indexPath.row]
cell.textLabel?.textColor = UIColor.white
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.cellForRow(at: indexPath as IndexPath)?.textLabel?.textColor = UIColor.red
}
func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
tableView.cellForRow(at: indexPath as IndexPath)?.textLabel?.textColor = UIColor.white
}
https://stackoverflow.com/questions/45560347
复制