User Mike Shields - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T18:32:40Zhttp://stackoverflow.com/feeds/user/29030http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/937438/should-i-worry-about-collisions-in-nsuserdefaults/937571#9375717Answer by Mike Shields for Should I worry about collisions in NSUserDefaults?Mike Shields2009-06-02T01:27:28Z2009-06-02T01:27:28Z<p>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.</p>
http://stackoverflow.com/questions/392749/xcode-adjusting-indentation-of-auto-generated-braces/393020#3930201Answer by Mike Shields for XCode: Adjusting indentation of auto-generated braces?Mike Shields2008-12-25T18:08:36Z2008-12-25T18:08:36Z<p>Read this: <a href="http://developer.apple.com/documentation/developertools/Reference/XcodeUserDefaultRef/100-User_Default_Reference/chapter_2_section_5.html#//apple_ref/doc/uid/TP40005535-CH3-SW40" rel="nofollow">XCCodeSenseFormattingOptions</a></p>
<p>This document describes all the formatting options that auto-complete will use for brace and argument style. Here are mine:</p>
<pre><code> XCCodeSenseFormattingOptions = {
BlockSeparator = "\\n";
PreMethodDeclSpacing = "";
};
</code></pre>
http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/262687#2626871Answer by Mike Shields for Objective-C switch using objects?Mike Shields2008-11-04T17:48:20Z2008-11-04T17:48:20Z<p>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 leads to code that looks like this:</p>
<pre><code>static CFDictionaryRef map = NULL;
int count = 3;
const void *keys[count] = { @"key1", @"key2", @"key3" };
const void *values[count] = { (uintptr_t)1, (uintptr_t)2, (uintptr_t)3 };
if (map == NULL)
map = CFDictionaryCreate(NULL,keys,values,count,&kCFTypeDictionaryKeyCallBacks,NULL);
switch((uintptr_t)CFDictionaryGetValue(map,[node name]))
{
case 1:
// do something
break;
case 2:
// do something else
break;
case 3:
// this other thing too
break;
}
</code></pre>
<p>If you're targeting Leopard only, you could use an NSMapTable instead of a CFDictionary.</p>