iOS 用clang重写.m文件时报错解决
2019-02-28 本文已影响0人
往事如烟_想戒_难
如果.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版本。