iOS 用clang重写.m文件时报错解决

如果.m文件中使用了weak关键字,在重写时会报cannot create _weak reference because the current deployment target does not support weak references 。

解决办法为用下面的方法重写:

clang -rewrite-objc -fobjc-arc -fobjc-runtime=macosx-10.14 main.m

其中macosx-10.14 为你本机的sdk版本。

你可能感兴趣的:(iOS 用clang重写.m文件时报错解决)