Pointer is missing a nullability type specifier

后端 未结 6 1812
情书的邮戳
情书的邮戳 2021-01-31 01:17

In Xcode 7 GM I started to get this warning:

Pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)

6条回答
  •  太阳男子
    2021-01-31 01:52

    Remove below macro from your .h file and warning will disappear

    NS_ASSUME_NONNULL_BEGIN 
    
    NS_ASSUME_NONNULL_END
    

提交回复
热议问题