添加此代码后,为什么会出现错误?:, 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
类中。