Search Results

1
vote

Objective-C switch using objects?

What we've done in our projects where we need to so this sort of thing over and over, is to set up a static CFDictionary mapping the strings/objects to check against to a simple integer value. It l …
7
votes

Should I worry about collisions in NSUserDefaults?

You should also be storing usernames and passwords inside of the keychain and not in user defaults. Storing them in user defaults open them up to snooping when backing up the data to their Mac. …