网站首页
编程语言
数据库
系统相关
其他分享
编程问答
stringBlock
2024-08-08
Objective-C学习笔记(Block用法)
Blocks(块)block以插入字符(^)为标识。可以作为函数参数,返回值,或直接调用返回类型(^block命名)(参数类型1,参数类型2)NSString*(^stringBlock)(int,int)=^NSString*(inta,intb){return[NSStringstringWithFormat:@"%d%d",a,b];};当使用block作为函数的参