I am just curious if there is a way to swap the two stings in this example?
// This works
for(eachArtist in artistCollection) {
if([objFirName isEqualToString: [eachArtist firName]]) NSLog(@"DELETE ....");
}
What I was trying to do was (see below) can this be done or is the above the only way?
[eachArtist firName isEqualToString: objFirName]
eachArtist.firName is a NSString within an array of objects, objFirName is a vanilla NSString.
gary