UITableViewCell中的UIButton标题在重用时会发生变化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UITableViewCell中的UIButton标题在重用时会发生变化相关的知识,希望对你有一定的参考价值。
我有一个表视图,其中包含电话联系人和Facebook好友的数据。如果用户是联系人,则单元格的按钮标题应为“邀请”,如果是Facebook好友则为“添加”。
但是,每个按钮上的标题都是错误的并且正在交换滚动。
这是我的模特:
struct MyContact {
var name: String
var phone: String
var photoUrl: String
var isFBUser: Bool
}
模型数组
var myContacts = [MyContact]()
cellForRowAt
func tableView(_ tableView: UITableView, cellForRowAt indexpath: Indexpath) -> UITableviewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! ContactCell
let contact = myContacts[indexPath.row]
if contact.isFBUser == true {
cell.button.setTitle("Add", for: .normal)
} else {
cell.button.setTitle("Invite", for: .normal)
}
cell.contact = contact
cell.configureCell()
}
ContactCell.swift
func configureCell() {
if contact.isFBUser == true {
button.setTitle("Add", for: .normal)
} else {
button.setTitle("Invite", for: .normal)
}
}
我甚至尝试在prepareForReuse上将按钮标题设置为nil
override func prepareForReuse() {
super.prepareForReuse
button.setTitle(nil, for: .normal)
}
答案
重复使用单元格对象,因此当您将它们出列(或将其传递给configureCell()
)时,您需要继续设置它们的接触属性
以上是关于UITableViewCell中的UIButton标题在重用时会发生变化的主要内容,如果未能解决你的问题,请参考以下文章
UITableViewCell 中的 UITextField - UIButton
触摸 UITableViewCell 中的 UIButton 无法滚动表格
UITableViewCell 中的 UIButton 为 nil
从 UITableViewCell 中的 UIButton 触发 Segue