I have a fairly large app (objective-c), I decided to turn on the "Sign Comparison" warnings. I now have almost 100 of them. Most of them are similar to this:
if (recentSearches.count > indexPath.row) {
//something
}
and the errors are similar to this:
Comparison of integers of different signs: 'NSUInteger' (aka 'unsigned int') and 'NSInteger' (aka 'int')
what are some good strategies or tips on how to tackle them all? Thanks