CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO
strict prototypes = no
xcode里第三方注释中出现的警告:
在 TARGETS 里,把 Documentation Comments 的值设置为 NO 就行了。
Umbrella header for module 'XXX' does not include header 'XXX.h'
将对应的 #import <XXX/XXX.h>
换成 #import "XXX/XXX.h"
就可以了。
类似ld: warning: directory not found for option ''
由于删除了引用的第三方库出现的warning
在PROJECTS 和 TARGET 中搜索 Library Search Paths 将引用删除。
网友评论