SyntaxFix
Write A Post
Hire A Developer
Questions
If you want to do this inline, just cast the NSUInteger or NSInteger to an int:
NSUInteger
NSInteger
int
int i = -1; NSUInteger row = 100; i > row // true, since the signed int is implicitly converted to an unsigned int i > (int)row // false