使用SwipeCellKit自定义TableViewCell

时间:2018-07-06 08:02:05

标签: swift uitableview swipe

我对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

任何人都知道如何取消屏蔽吗?

谢谢!

1 个答案:

答案 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
}