我有一个相当大的应用程序(objective-c),我决定打开“符号比较”警告。我现在有将近 100 个。其中大部分与此类似:
if (recentSearches.count > indexPath.row) {
//something
}
并且错误与此类似:
Comparison of integers of different signs: 'NSUInteger' (aka 'unsigned int') and 'NSInteger' (aka 'int')
关于如何解决所有这些问题有哪些好的策略或技巧?谢谢