在参数前加 __attribute__((noescape)),
没加时报警告:
- (NSArray*)mas_makeConstraints:(void(^)(MASConstraintMaker*))block {
加之后:
- (NSArray*)mas_makeConstraints:(void(^)(MASConstraintMaker*))__attribute__((noescape))block {
在参数前加 __attribute__((noescape)),
没加时报警告:
- (NSArray*)mas_makeConstraints:(void(^)(MASConstraintMaker*))block {
加之后:
- (NSArray*)mas_makeConstraints:(void(^)(MASConstraintMaker*))__attribute__((noescape))block {
本文标题:Parameter of overriding method s
本文链接:https://www.haomeiwen.com/subject/uyqsudtx.html
网友评论