美文网首页
2018-07-23

2018-07-23

作者: 沉溺IOS | 来源:发表于2018-08-22 10:56 被阅读0次

苹果屏幕尺寸,像素,分辨率原文文档介绍地址:

https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions

Objective-C 中 block块 的使用

http://fuckingblocksyntax.com

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) {...};

相关文章

网友评论

      本文标题:2018-07-23

      本文链接:https://www.haomeiwen.com/subject/bbwdmftx.html