添加此代码后,为什么会出现错误?:, myProfileWorkoutTableViewCellDelegate
上我的课?:

class myProfileTableViewController: UITableViewController, UICollectionViewDataSource, UICollectionViewDelegate, myProfileWorkoutTableViewCellDelegate {

这是我myProfileTableViewCell.swift的开始:
import UIKit
import Firebase
import FirebaseDatabase

protocol myProfileWorkoutTableViewCellDelegate {
    func watchTrainingPressed(cell: myProfileWorkoutTableViewCell)
}

class myProfileWorkoutTableViewCell: UITableViewCell {

这是我在单元格内的按钮:
@IBAction func watchTrainingPressed(sender: AnyObject) {
        if let _ = delegate {
            delegate?.watchTrainingPressed(self)
        }
    }

最佳答案

您需要实现该功能
func watchTrainingPressed(cell: myProfileWorkoutTableViewCell)
myProfileTableViewController类中。

09-26 22:53