HTML文字列を解析するために、ElementParserをプロジェクトにインポートしました。ただし、xcodeは次のコードで警告を報告します。
if ([connectionDelegate respondsToSelector:@selector(connection:didFailWithError:)])
[connectionDelegate connection:connection didFailWithError: error]; // Warning at this line
最初の行にはチェックがあるため、2番目の行は実行時に安全である必要があります。
プロジェクトに警告が存在するのは本当に好きではありません。それで、この警告を隠す方法があるのだろうか?