这是我的课,所以想要为此创建委托。
class AClass{
func doSomthing(){
print("AClass Method")
}
}
答案 0 :(得分:1)
protocol MyCellDelegate {
func didTapButton()
}
class MyCell {
var delegate: MyCellDelegate?
func buttonTapAction() {
delegate?.didTapButton()
}
}
class ViewController: MyCellDelegate {
func didTapButton() {
print("hello world")
}
}