Documentation Issue
Xcode 8.3.3 でビルドするようになって、 CocoaPodsで入れているライブラリの Documentation Issue の Warning がでるようになった。
AWSCore だとこういうのがでてた。
Documentation Issue
Parameter 'kits' not found in the function declaration
- https://github.com/realm/realm-cocoa/issues/4853
Realm 入れてるとたくさんでるみたいだった。
とりあえず、以下を Podfile
入れたらWarningが消えた。
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CLANG_WARN_DOCUMENTATION_COMMENTS'] = 'NO'
end
end
end
あとは手動で Pods.xcodeproj
の 方の CLANG_WARN_DOCUMENTATION_COMMENTS
を NO にするか。