2017-07-14 6 views

答えて

1
protocol MyCellDelegate { 
    func didTapButton() 
} 

class MyCell { 

    var delegate: MyCellDelegate? 

    func buttonTapAction() { 
     delegate?.didTapButton() 
    } 
} 

class ViewController: MyCellDelegate { 

    func didTapButton() { 
     print("hello world") 
    } 

} 
関連する問題