I am developing an app in iPhone
I am using an NSRange object in my code.
if (range.length == 0) { do something }
When I print the the value of range.length on the console it writes 0. Which means my if condition holds valid. But it never enter inside the loop to do something.
Any clue what I might be doing wrong?
Thanks AJ