我对Pod SwipeCellKit的理解有问题。
我有一个简单的设置(用于检索数据的Firebase)
关于我:
class MyFriendsViewController: UIViewController,UITableViewDataSource, UITableViewDelegate {
@IBOutlet weak var MyFriendsTableview: UITableView!
var ref: DatabaseReference!
var MyFriendslist = [MyFriendsModel]()
我有这样的cellForRowAt:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CustomFriends", for: indexPath) as! MyFriendsTableViewCell
// let cell = tableView.dequeueReusableCell(withIdentifier: "CustomFriends") as! SwipeTableViewCell
// cell.delegate = self
当我尝试实现swipeCellKit时,如果放置了以下代码,则会从MyFriendTableViewCell中删除我的引用(UIimage,标签引用):
let cell = tableView.dequeueReusableCell(withIdentifier: "CustomFriends") as! SwipeTableViewCell
cell.delegate = self
任何人都知道如何取消屏蔽吗?
谢谢!
答案 0 :(得分:4)
只需更改此:
class MyFriendsTableViewCell: UITableViewCell { ...
要此:
class MyFriendsTableViewCell: SwipeTableViewCell { ...
我们刚刚继承了继承UITableViewCell的SwipeTableViewCell属性。进行此更改后,您将可以使用MyFriendsTableViewCell
属性和SwipeTableViewCell
属性。
更新的代码:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CustomFriends", for: indexPath) as! MyFriendsTableViewCell
cell.delegate = self
...
cell.yourMyFriendsTableCellProperty = ...
return cell
}