User Mike Shields - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T18:32:40Z http://stackoverflow.com/feeds/user/29030 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/937438/should-i-worry-about-collisions-in-nsuserdefaults/937571#937571 7 Answer by Mike Shields for Should I worry about collisions in NSUserDefaults? Mike Shields 2009-06-02T01:27:28Z 2009-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#393020 1 Answer by Mike Shields for XCode: Adjusting indentation of auto-generated braces? Mike Shields 2008-12-25T18:08:36Z 2008-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#262687 1 Answer by Mike Shields for Objective-C switch using objects? Mike Shields 2008-11-04T17:48:20Z 2008-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,&amp;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>