0

自从我在这里自欺欺人以来已经有一段时间了,所以又来了,因为我仍在努力学习,感觉好像我在这个项目上追逐我的尾巴。

话虽如此,最终我想让 Jerkoch 的 SwipeCellKit 工作,但此时没有必要,因为我只需要弄清楚如何添加更多选项,而不仅仅是“删除”单元格操作。

这就是我所拥有的:我的项目

这就是我想要的:Jerkoch 的项目

如果我在 tableView 上设置委托属性,我会丢失我的数据

let cell = tableView.dequeueReusableCell(withIdentifier: "CommentCell", for: indexPath) as! CommentTableViewCell

let cell = tableView.dequeueReusableCell(withIdentifier: "CommentCell", for: indexPath) as! SwipeTableViewCell

这是我的 CommentViewController 代码:

    import UIKit
    import SwipeCellKit

    class CommentViewController: UIViewController {

    var postId: String!
    var comments = [Comment]()
    var users = [User]()

    override func viewDidLoad() {
        super.viewDidLoad()

        tableView.tableFooterView = UIView(frame: CGRect.zero)
        tableView.separatorInset = UIEdgeInsets.zero

        tableView.dataSource = self
        tableView.estimatedRowHeight = 100
        tableView.rowHeight = UITableViewAutomaticDimension

        loadComments()
    }

    func loadComments() {
        Api.Post_Comment.REF_POST_COMMENTS.child(self.postId).observe(.childAdded, with: {
            snapshot in
            Api.Comment.observeComments(withPostId: snapshot.key, completion: {
                comment in
                self.fetchUser(uid: comment.uid!, completed: {
                    self.comments.append(comment)
                    self.tableView.reloadData()
                })
            })
        })
    }

    func fetchUser(uid: String, completed:  @escaping () -> Void ) {
        Api.User.observeUser(withId: uid, completion: {
            user in
            self.users.append(user)
            completed()
        })
    }


}

extension CommentViewController: UITableViewDataSource {

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return comments.count
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "CommentCell", for: indexPath) as! CommentTableViewCell// Can't update this to SwipeTableViewCell - Will loose data
        cell.selectedBackgroundView = createSelectedBackgroundView()
        let comment = comments[indexPath.row]
        let user = users[indexPath.row]
        cell.comment = comment
        cell.user = user
        cell.delegate = self
        return cell
    }
}

extension CommentViewController: SwipeTableViewCellDelegate{

    func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
    }

    func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath, for orientation: SwipeActionsOrientation) -> [SwipeAction]? {
        guard orientation == .right else { return nil }

        let deleteAction = SwipeAction(style: .destructive, title: "Delete") { action, indexPath in
            // handle action by updating model with deletion
        }
        // customize the action appearance
        deleteAction.image = UIImage(named: "delete")

        let flagAction = SwipeAction(style: .destructive, title: "Flag") { action, indexPath in
            // handle action
        }
        deleteAction.image = UIImage(named: "flag")

        let blockAction = SwipeAction(style: .destructive, title: "Block") { action, indexPath in
            // handle action
        }
        deleteAction.image = UIImage(named: "block")

        return [deleteAction, flagAction, blockAction]
    }        
}

我什至尝试过类似以下的方法:

    func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
    // THIS GIVES THE DEFAULT 'DELETE' ACTION
    print("Commit editingStyle")

}

func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? {
    print("editActionsForRowAtIndexPath")

    let blockAction = UITableViewRowAction(style: UITableViewRowActionStyle.normal, title: "Block", handler: { (action:UITableViewRowAction, IndexPath:IndexPath) in
        //self.isEditing = false
        print("Block action Pressed")
    })

    let flagAction = UITableViewRowAction(style: UITableViewRowActionStyle.normal, title: "Flag", handler: { (action:UITableViewRowAction, IndexPath:IndexPath) in
        print("Flag action Pressed")
    })

    let deleteAction = UITableViewRowAction(style: UITableViewRowActionStyle.destructive, title: "Delete", handler: { (action:UITableViewRowAction, IndexPath:IndexPath) in
        print("Delete action Pressed")
    })

    return [blockAction, flagAction, deleteAction]   
}

无论我做什么,我只能在滑动操作上显示通用的“删除”操作。

我什至不认为以下函数被调用/引用:

func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? {

我做错了什么,或者我需要什么 CUD 才能获得 3 次滑动动作;删除、标记和阻止,让 Apple 为我的下一次提交感到高兴。

谢谢大家!

4

1 回答 1

0

这个问题已经过时了,但我会写下我认为可以解决问题的答案:)

您应该为您的视图使用 UITableViewController 而不是 UIViewController。SwipeCellKit 仅适用于 TableViewControllers。

于 2018-05-24T20:15:53.320 回答