How do we compare two NSInteger numbers ? I have two NSIntegers and comparing them the regular way wasnt working.
if (NSIntegerNumber1 >= NSIntegerNumber2) {
//do something
}
Eventhough, the first value was 13 and the second value was 17, the if loop is executing
Any idea ?