关于UITableView
的问题很奇怪。我有3个数据源,这意味着UITableView
中的3个部分。当我滚动UITableView
时,按钮和图像冲突。按钮消失,图像变形。
这是我的cellForRowAt
方法。
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "eventnetworkingcell", for: indexPath) as! EventNetworkCell
var name: String = ""
var job: String = ""
var company: String = ""
var img: Int?
cell.userImageView.layer.cornerRadius = 45
cell.userImageView.clipsToBounds = true
if indexPath.section == 0 {
name = self.matchmaking[indexPath.row].name
job = self.matchmaking[indexPath.row].job
company = self.matchmaking[indexPath.row].company
img = self.matchmaking[indexPath.row].image
}
else if indexPath.section == 1 {
name = self.networkInEvent[indexPath.row].name
job = self.networkInEvent[indexPath.row].job
company = self.networkInEvent[indexPath.row].company
img = self.networkInEvent[indexPath.row].image
cell.addButtonOutlet.alpha = 0
}
else {
name = self.allAttendees[indexPath.row].name
job = self.allAttendees[indexPath.row].job
company = self.allAttendees[indexPath.row].company
img = self.allAttendees[indexPath.row].image
}
cell.nameLabel.text = name
cell.jobLabel.text = job
cell.companyLabel.text = company
if let imgid = img {
let url = MTApi.url(for: imgid, size: .normal)
cell.userImageView.sd_setImage(with: url, placeholderImage: nil, options: [], completed: nil)
}
}
cell.addButtonOutlet.addTarget(self, action:
#selector(self.addNetwork(sender:)), for: .touchUpInside)
return cell
}
当我删除cell.addButtonOutlet.alpha = 0
行时,按钮并没有消失。
并且有一个视频显示了这个问题:
答案 0 :(得分:0)
您在重复使用单元格时遇到问题。
基本上,正在发生的事情是tableView仅创建足够多的单元格,这些单元格的大小与屏幕上可见的内容相同,并且一旦单元格滚动出视图,它就会重新用于dataSource中的另一项。
按钮看似消失的原因是,您以前已经删除了按钮,但是现在,在重用时,并没有告诉单元格再次显示按钮。
修复这很容易,只需添加:
cell.addButtonOutlet.alpha = 0
您的第0和2部分(其他块)。
与图像相同,除非您告诉单元格如果需要删除图像,否则保留先前的图像,因此只需添加以下内容:
if let imgid = img {
let url = MTApi.url(for: imgid, size: .normal)
cell.userImageView.sd_setImage(with: url, placeholderImage: nil, options: [], completed: nil)
} else {
cell.userImageView.image = nil
}
答案 1 :(得分:0)
var name: String = ""
var job: String = ""
var company: String = ""
var img: Int?
cell.userImageView.layer.cornerRadius = 45
cell.userImageView.clipsToBounds = true
cell.addButtonOutlet.alpha = 1 // add more
if indexPath.section == 0 {
........
,您应该研究UITableviewCell重用。