我将 ElementParser 导入到我的项目中以解析 html 字符串。但是 xcode 在以下代码中报告了警告:
if ([connectionDelegate respondsToSelector:@selector(connection:didFailWithError:)])
[connectionDelegate connection:connection didFailWithError: error]; // Warning at this line
由于第一行有检查,第二行在运行时必须是安全的。
我真的不喜欢我的项目中存在警告。所以我想知道是否有办法隐藏这个警告?