Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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];
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.