swift 在Swift中创建一个委托

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 在Swift中创建一个委托相关的知识,希望对你有一定的参考价值。

import Foundation

protocol SessionsDelegate: class {
    
    func onSessionsReceived()
    func onSessionsError(code:Int,msg:String)

}


/*
class ViewController: UIViewController, SessionsDelegate
{
    func onSessionsReceived()
    {
      //code
    }
    
    func onSessionsError(code:Int,msg:String)
    {
      //code
    }
}
*/

以上是关于swift 在Swift中创建一个委托的主要内容,如果未能解决你的问题,请参考以下文章

Swift 语言的委托

在 swift 中,如何在应用程序委托中实现一个变量,以便在应用程序的任何地方检索它?

swift 在swift中创建一个警报视图弹出窗口

如何在 Swift 中创建私有函数? [复制]

如何在 Swift 中创建一个圆形按钮? [关闭]

如何在 Swift 中创建 UIAlertView?