在 Diagnostic flags in Clang https://clang.llvm.org/docs/DiagnosticsReference.html 这里搜索某个警告信息,如下图所示。
warning: method A in protocol B not implemented
的警告名字为 protocol
然后根据 https://clang.llvm.org/docs/UsersManual.html#options-to-control-error-and-warning-messages 这里的规则
-Werror=foo
Turn warning “foo” into an error.
最后在 target 的 build settings 的 OTHER_CFLAGS 加入
-Werror=protocol
就可以了。
Loading Comments...