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 { () -> Int in
            print("回调")
            return 20
        }
    }
    /**
     * 闭包返回整型数据
     */
    func processData(printSomething:()->Int){
        print("执行操作")
        //执行闭包回调
        let num = printSomething()
        print("闭包返回值num:\(num)")
    }

}

 

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

swift找window,导航栏的简单使用,Controller通过闭包传值简单示例

动手写一个简单的编译器:在JavaScript中使用Swift的尾闭包语法

Swift初见Swift闭包

swift学习第十五天:闭包

Swift 中的利刃函数

iOS Swift:闭包(回调)与委托,何时使用? [关闭]