How Do I Declare A Block in Objective-C?

好久不写简书了,最近懒的不要不要的,订的计划错过了所以的时间节点,不能再颓废了,要振作,今天看到了一个小小的网页还不错,分享一下

How Do I Declare A Block in Objective-C?

As a local variable:
returnType (^blockName)(parameterTypes) = ^returnType(parameters) {...};

As a property:
@property (nonatomic, copy, nullability) returnType (^blockName)(parameterTypes);

As a method parameter:

  • (void)someMethodThatTakesABlock:(returnType (^nullability)(parameterTypes))blockName;

As an argument to a method call:
[someObject someMethodThatTakesABlock:^returnType (parameters) {...}];

As a typedef:
typedef returnType (^TypeName)(parameterTypes);TypeName blockName = ^returnType(parameters) {...};

This site is not intended to be an exhaustive list of all possible uses of blocks.If you find yourself needing syntax not listed here, it is likely that a typedef would make your code more readable.Unable to access this site due to the profanity in the URL? http://goshdarnblocksyntax.com is a more work-friendly mirror.

借此为努力的引子,把当年发下的毒誓,跪着也要实现哈

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • As alocal variable: returnType(^blockName)(parameterTypes...
    杜员外阅读 367评论 0 0
  • How Do I Declare A Block in Objective-C? As a local varia...
    tusna_X阅读 144评论 0 0
  • 鹰是鱼儿的噩梦, 放弃大海随它拥抱蓝天, 磨难其实是鹰, 我是旡奈的鱼儿。 表面已坚强无畏。 梦醒时分, 泪痕犹存,
    化茧成蝶_219a阅读 285评论 0 0
  • 我一直以为自己足够坚强,隐忍着各种莫名的委屈和别人给的不堪,不是真的软弱,也不是不想反击,只是习惯了沉默,也不愿向...
    木子婗婗阅读 320评论 0 2
  • 故事的结局只有两种,一种是好的,一种是坏的.好的结局让人感动,人生其实可以更加美好;坏的结局呢! 生...
    文的文阅读 111评论 0 0

友情链接更多精彩内容