Delegates in swift?

前端 未结 12 1519
天命终不由人
天命终不由人 2020-11-22 03:27

How does one go about making a delegate, i.e. NSUserNotificationCenterDelegate in swift?

12条回答
  •  滥情空心
    2020-11-22 04:14

    In swift 4.0

    Create a delegate on class that need to send some data or provide some functionality to other classes

    Like

    protocol GetGameStatus {
        var score: score { get }
        func getPlayerDetails()
    }
    

    After that in the class that going to confirm to this delegate

    class SnakesAndLadders: GetGameStatus {
        func getPlayerDetails() {
    
     }
    }
    

提交回复
热议问题