if(lyricsId == areleased.trackId) { ----------; ----------; }
when I work with the above code, it is not introduced into this loop. So, I used the code below, then it went into the loop, and I got out of it.
if([lyricsId isEqualToString:areleased.trackId]) { ----------; ----------; }
Is there a difference between == and isEqualToString.
objective-c
Madan mohan
source share