不知道怎么回事,今天在用theos编译工程的时候突然报错:
ivar 'visibleKeyboardHeight'
which backs the property is not referenced in this property's accessor
[-Werror,-Wunused-property-ivar]
仔细一看,这分明是个warning,不知道怎么变成了错误,查阅clang文档的时候发现可通过设置编译选项为-Wno-error来解决,于是在Makefile中加入如下语句:
ADDITIONAL_OBJCFLAGS = -Wno-error
就不会报错了,仅仅是warning。