SWIFT 闭包的简单使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SWIFT 闭包的简单使用相关的知识,希望对你有一定的参考价值。

import UIKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?


    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
        self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
        // Override point for customization after application launch.
        self.window!.backgroundColor = UIColor.whiteColor()
        
        self.window!.rootViewController = RootViewController()
        
        self.window!.makeKeyAndVisible()
        return true
    }
}
import UIKit

class RootViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        //调用processData函数
        processData { () -> () in
            print("被回调了");
        }
    }
    
    func processData(printSomething:()->()){
        print("执行操作");
        //执行闭包回调
        printSomething();
    }

}

 

以上是关于SWIFT 闭包的简单使用的主要内容,如果未能解决你的问题,请参考以下文章

SWIFT 闭包的简单使用二

Swift学习笔记——闭包的几种形式

Swift-使用完成处理程序更新闭包外的全局变量

swift闭包_002_swift闭包

Spark闭包与序列化

Swift:闭包