I am making an NSMutableArray from strings loaded from NSUserDefaults. The user can then add strings to that array. I then compare each string of that array with another string to see if it exists in the array. Let's say I am looking for object1 and that it does exist in the array. This is my code to see if object1 exists in the array:
for (i = 0; i < arrayToCheck.count; i++) {
if (object1 == [arrayToCheck objectAtIndex:i]) {
//action performed if the object exists in the array
break;
}
}
this works fine if object1 was added after the array was constructed from objects loaded from NSUserDefaults. But if object1 was loaded from NSUserDefaults it doesn't consider that object1 == object1. Obviously something happens to objects when they are saved and loaded from NSUserDefaults but I can't seem to find what. Any help? This is my loading code:
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
arrayToCheck = [[getPrefs objectForKey:@"Object Key"] mutableCopy];
this is my saving code:
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
[setPrefs setObject:arrayToCheck forKey:@"Object Key"];
[setPrefs synchronize];