swift中闭包block的使用

使用闭包block的方式,一是定义成函数方式,二是定义成属性变量。

方法1:定义成属性变量

// 1 
// block定义
typealias BlockTarget = (String) -> (Void)
// 定义成变量
var blockTarget:BlockTarget?
// 
self.blockTarget = { text -> Void in
            print("text = \(text)")
        }
//
self.navigationItem.rightBarButtonItem = UIBarButtonItem.init(title: "block",style: .Done,target: self,action: Selector("blockClick"))
//
func blockClick()
{
        self.blockTarget?("block click")
}

// 2
//
var blockAction:((String) -> (Void))?
//
self.blockAction = { text -> Void in
            print("action = \(text)")
        }
//
self.navigationItem.rightBarButtonItem = UIBarButtonItem.init(title: "block",action: Selector("blockClick"))
//
func blockClick()
{        
        self.blockAction?("black action")
}


方法2:定义成函数

1、无参数的函数

// 无参数
func blockHandle(handle:(Void) -> Void)
{
        print("block方法:没有参数的……")
        handle()
}
// 使用
self.blockHandle {
            () -> Void in
            print("block方法:没有参数的……")
}


2、带参数的函数

// 带参数
func resultimageUrl(url url:String,handle:(NSURL) -> Void)
{
        let nsurl = NSURL(string: url)
        print("NSURL = \(nsurl)")
        handle(nsurl!)
}
// 使用
self.resultimageUrl(url: "http://www.hao123.com") {
            (url:NSURL) -> Void in
            print("url is \(url)")
}

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...