Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 iOS 开发中为单元格出列并在内部重用时添加观察者UITableView?
UITableView
谢谢。
// 用 id 标记你的单元格
cell.Tag = item.ID;
您可以继承 UITableViewCell 然后覆盖该[UITableViewCell prepareForReuse]方法。请注意,这仅在您的单元子类具有与其关联的重用标识符时才有效,因此请确保您为该属性设置了一个值。
[UITableViewCell prepareForReuse]