User schwa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T03:00:22Zhttp://stackoverflow.com/feeds/user/23113http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago128What are those little Xcode tips & tricks you wish you knew about 2 years ago?schwa2008-09-28T17:26:37Z2009-12-06T19:37:16Z
<p>With a huge influx of newbies to Xcode I'm sure there are lots of Xcode tips and tricks to be shared.</p>
<p>What are yours? </p>
http://stackoverflow.com/questions/1734386/what-are-common-cocoa-pitfalls/1738195#17381951Answer by schwa for What are common Cocoa pitfalls?schwa2009-11-15T17:33:27Z2009-11-15T17:33:27Z<p>Assuming your project will make a "build" directory next to your .xcodeproj file.</p>
<p>Some people prefer to have customized & centralized build locations. If you <em>must</em> refer to something inside a build directory (for custom build actions etc) use something like: $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)</p>
<p>These custom environment variables are documented in xcode's docs.</p>
http://stackoverflow.com/questions/1734386/what-are-common-cocoa-pitfalls/1737869#17378694Answer by schwa for What are common Cocoa pitfalls?schwa2009-11-15T15:40:38Z2009-11-15T15:40:38Z<p>Retaining a delegate.</p>
<p>And related:</p>
<p>Assuming you will get retained if you pass yourself as a delegate to another object.</p>
<p>I've seen folks often screw up the delegate rules quite badly. For the most part it is simple. Delegates are not retained. This is to prevent retain cycles.</p>
<p>Exceptions exist of course: NSURLConnection will retain its delegates (so the solution is to explicitly break the retain cycle when the URL connection finishes or fails).</p>
http://stackoverflow.com/questions/192721/why-shouldnt-i-use-obective-c-2-0-accessors-in-init-dealloc11Why shouldn't I use Obective C 2.0 accessors in init/dealloc? schwa2008-10-10T19:21:32Z2009-11-08T21:58:27Z
<p>In <a href="http://stackoverflow.com/users/23233/mmalc">@mmalc's</a> <a href="http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa#156288">response</a> to <a href="http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa">this question</a> he states that "In general you should <em>not</em> use accessor methods in dealloc (or init)." Why does mmalc say this?</p>
<p>The only really reasons I can think of are performance and avoiding unknown side-effects of @dynamic setters.</p>
<p>Discussion?</p>
http://stackoverflow.com/questions/205386/cocoa-bad-habits11Cocoa Bad Habitsschwa2008-10-15T16:21:00Z2009-11-08T16:12:22Z
<p>What are those bad habits you've developed since you've started coding in Cocoa?</p>
<p>I think making a list of bad habits and actively adding to it and, more importantly, breaking those habits is a good technique to produce your code quality. So start now, get your bad habits off your chest. Maybe other people share your bad habits. </p>
http://stackoverflow.com/questions/145154/what-does-your-objective-c-singleton-look-like19What does your Objective-C singleton look like?schwa2008-09-28T03:38:53Z2009-10-28T23:43:56Z
<p>Mine is merely (or a close variant thereof):</p>
<pre><code>static MyClass *gInstance = NULL;
+ (MyClass *)instance
{
@synchronized(self)
{
if (gInstance == NULL)
gInstance = [[self alloc] init];
}
return(gInstance);
}
</code></pre>
http://stackoverflow.com/questions/1604673/how-do-i-embed-data-into-a-mac-os-x-mach-o-binary-files-text-section2How do I embed data into a Mac OS X mach-o binary file's TEXT Section?schwa2009-10-22T02:07:28Z2009-10-22T05:47:54Z
<p>I have a Mac OS X command-line tool that would benefit from having some data embedded in the binary file itself.</p>
<p>I know mach-o files support multiple segments, some of which can be used for storing arbitrary data. But I can't find a command-line tool to do that.</p>
<p>While I know there are other, probably simpler ways (e.g. convert the data file into C source code and have it get linked in by gcc) to get the data into my binary this problem has piqued my interest. Anyone know the magic?</p>
http://stackoverflow.com/questions/151711/carbon-vs-cocoa-is-carbon-a-dead-end-with-os-x/154635#1546353Answer by schwa for Carbon vs Cocoa, is Carbon a dead end with OS X?schwa2008-09-30T19:43:21Z2009-05-22T21:45:33Z<p>Mac OS X developers who primarily use Cocoa still use Carbon all the time. It is a <em>very</em> common occurrence to have to use a carbon API when there isn't an equivalent Cocoa API.</p>
<p>Just think of Carbon as another tool (or rather set of tools) in your API toolbox. There's no need to play the "OMG Carbon Sucks! Cocoa rules!" game. It isn't healthy.</p>
<p>I'd hazard a guess that most popular Cocoa applications have a dash of Carbon in them.</p>
<p>The iPhone <em>does</em> change this a little. The iPhone SDK is (mostly) new from the ground app and Carbon wasn't included (but then so was a huge chunk of Cocoa too).</p>
<p>Use whatever tool allows you to do you work most efficiently and stop worrying about the whole Cocoa vs Carbon thing.</p>
http://stackoverflow.com/questions/892223/how-can-i-decode-data-with-base64-in-iphone/892367#8923671Answer by schwa for How can I decode data with Base64 in IPhoneschwa2009-05-21T11:01:03Z2009-05-21T11:01:03Z<p>TouchCode has <a href="http://touchcode.googlecode.com/hg/Support/Common/Base64Transcoder.c" rel="nofollow">http://touchcode.googlecode.com/hg/Support/Common/Base64Transcoder.c</a> (and .h)</p>
http://stackoverflow.com/questions/688070/is-there-any-way-to-pass-an-nsarray-to-a-method-that-expects-a-variable-number-of/688080#6880801Answer by schwa for Is there any way to pass an NSArray to a method that expects a variable number of arguments, such as +stringWithFormat:schwa2009-03-27T00:34:34Z2009-03-27T00:34:34Z<p>This may not be the example you're looking for. But in this case I'd put your string values into an array and then use [theArray componentsJoinedByString:@","] to turn them into your sql argument list.</p>
http://stackoverflow.com/questions/505180/how-to-change-the-text-color-on-uinavigationbar-button-items/684348#6843482Answer by schwa for How to change the text color on UINavigationBar button itemsschwa2009-03-26T02:45:04Z2009-03-26T02:51:18Z<p>Here's one way:</p>
<pre><code>[[theNavigationBar.subviews objectAtIndex:1] setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
[[theNavigationBar.subviews objectAtIndex:2] setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
</code></pre>
<p>However, HUGE, caveat. This is highly likely to break on a future OS release and is not recommended.</p>
<p>At the very least you should perform a lot of testing and make sure you your assumptions of the subview layout of the navigation bar are correct.</p>
http://stackoverflow.com/questions/678620/why-does-nstextstorage-replacecharactersinrange-withattributedstring-sometim/678719#6787191Answer by schwa for Why does -[NSTextStorage replaceCharactersInRange: withAttributedString:] sometimes, sometimes not honor fonts in other character sets?schwa2009-03-24T18:53:49Z2009-03-24T18:53:49Z<p>Have you tried turning it off and on again?</p>
http://stackoverflow.com/questions/401040/layer-hit-test-only-returning-layer-when-bottom-half-of-layer-is-touched/587624#5876242Answer by schwa for layer hit test only returning layer when bottom half of layer is touchedschwa2009-02-25T20:06:24Z2009-02-25T20:06:24Z<p>The documentation for hitTest says:</p>
<pre><code>/* Returns the farthest descendant of the layer containing point 'p'.
* Siblings are searched in top-to-bottom order. 'p' is in the
* coordinate system of the receiver's superlayer. */
</code></pre>
<p>So you need to do (something like this):</p>
<pre><code>CGPoint thePoint = [touch locationInView:self];
thePoint = [self.layer convertPoint:thePoint toLayer:self.layer.superlayer];
CALayer *theLayer = [self.layer hitTest:thePoint];
</code></pre>
<p>(Repeating answer from other post for completeness' sake)</p>
http://stackoverflow.com/questions/410278/convert-a-cgpoint-from-a-uiview-coordinate-system-to-a-calayer-coordinate-system/587619#5876192Answer by schwa for Convert a CGPoint from a UIView coordinate system to a CALayer coordinate systemschwa2009-02-25T20:05:46Z2009-02-25T20:05:46Z<p>The documentation for hitTest says:</p>
<pre><code>/* Returns the farthest descendant of the layer containing point 'p'.
* Siblings are searched in top-to-bottom order. 'p' is in the
* coordinate system of the receiver's superlayer. */
</code></pre>
<p>So you need to do (something like this):</p>
<pre><code>CGPoint thePoint = [touch locationInView:self];
thePoint = [self.layer convertPoint:thePoint toLayer:self.layer.superlayer];
CALayer *theLayer = [self.layer hitTest:thePoint];
</code></pre>
http://stackoverflow.com/questions/476455/is-there-a-library-for-iphone-to-work-with-hmac-sha-1-encoding/476859#4768591Answer by schwa for Is there a library for iPhone to work with HMAC-SHA-1 encodingschwa2009-01-24T23:08:56Z2009-01-24T23:08:56Z<p>CommonCrypto will do it. But if you want code, I have some here:</p>
<p><a href="http://oauth.googlecode.com/svn/code/obj-c/OAuthConsumer/Crypto/" rel="nofollow">http://oauth.googlecode.com/svn/code/obj-c/OAuthConsumer/Crypto/</a></p>
<p>Which I wrote for use in the Cocoa OAuth implementation: <a href="http://code.google.com/p/oauthconsumer/wiki/UsingOAuthConsumer" rel="nofollow">http://code.google.com/p/oauthconsumer/wiki/UsingOAuthConsumer</a> </p>
http://stackoverflow.com/questions/172125/avoiding-finding-and-removing-memory-leaks-in-cocoa10Avoiding, finding and removing memory leaks in Cocoaschwa2008-10-05T15:15:40Z2008-12-25T20:04:39Z
<p>Memory (and resource) leaks happen. How do you make sure they don't?</p>
<p>What tips & techniques would you suggest to help avoid creating memory leaks in first place?</p>
<p>Once you have an application that is leaking how do you track down the source of leaks?</p>
<p>(Oh and please avoid the "just use GC" answer. Until the iPhone supports GC this isn't a valid answer, and even then - it is possible to leak resources and memory on GC)</p>
http://stackoverflow.com/questions/288412/deserializing-a-complex-json-result-array-of-dictionaries-with-touchjson/289193#2891933Answer by schwa for Deserializing a complex JSON result (array of dictionaries) with TouchJSONschwa2008-11-14T03:50:43Z2008-11-14T03:56:36Z<p>I'm the author of TouchJSON.</p>
<p>Your outermost object should be a dictionary and NOT an array. Anything other than a dictionary is not legal. If you have to have an array as the outermost object then use the method (which is technically deprecated, but isn't going any where soon)</p>
<pre><code>- (id)deserialize:(NSData *)inData error:(NSError **)outError;
</code></pre>
<p>See: <a href="http://www.json.com/json-schema-proposal/" rel="nofollow">http://www.json.com/json-schema-proposal/</a> for more information abotu what is and is not legal JSON.</p>
http://stackoverflow.com/questions/264140/how-do-i-make-http-post-request-for-getting-json-object-in-response-for-iphone-ap/264340#2643402Answer by schwa for How do I make HTTP post request for getting JSON object in response for iPhone application?schwa2008-11-05T04:25:43Z2008-11-05T04:25:43Z<p>Not really sure what your question is exactly. But google "TouchJSON" that should help you get started.</p>
http://stackoverflow.com/questions/254281/best-practices-for-overriding-isequal-and-hash/254337#2543372Answer by schwa for Best practices for overriding isEqual: and hashschwa2008-10-31T17:43:29Z2008-10-31T17:43:29Z<p>This doesn't directly answer your question (at all) but I've used MurmurHash before to generate hashes: <a href="http://murmurhash.googlepages.com" rel="nofollow">http://murmurhash.googlepages.com</a></p>
<p>Guess I should explain why: murmurhash is bloody fast...</p>
http://stackoverflow.com/questions/251155/persisting-dates-to-sqlite3-in-an-iphone-application/251936#2519365Answer by schwa for Persisting Dates to SQLite3 in an iPhone Applicationschwa2008-10-30T22:06:55Z2008-10-30T22:06:55Z<p>I convert to/from ISO8601 strings: <a href="http://en.wikipedia.org/wiki/ISO_8601" rel="nofollow">http://en.wikipedia.org/wiki/ISO_8601</a></p>
<p>Far more readible/hackable than time intervals.</p>
http://stackoverflow.com/questions/247421/best-programmer-calculator-for-iphone/248728#2487281Answer by schwa for Best Programmer Calculator for iPhoneschwa2008-10-29T23:01:36Z2008-10-29T23:01:36Z<p>BinCalc. It's old and crufty but is great for binary/hex/floating point values.</p>
http://stackoverflow.com/questions/238056/can-an-iphone-or-ipod-touch-communicate-with-another-device-in-the-same-room/238164#2381640Answer by schwa for Can an iPhone or iPod Touch communicate with another device in the same room?schwa2008-10-26T16:00:32Z2008-10-26T16:00:32Z<p>You can do that… but you still need a Wifi network that all the iPhones can communicate with.</p>
http://stackoverflow.com/questions/216470/how-can-replace-the-string-foo-alloccursor-with-foo-alloccursor-in-xcod/216556#2165561Answer by schwa for How can replace the string [Foo alloc]<cursor> with [[Foo alloc]<cursor>] in XCode?schwa2008-10-19T15:43:54Z2008-10-19T15:43:54Z<p>You can probably do that using a script (check out the relevent piece of Xcode documentation). Also see the "Insert Text Macro" menu item…</p>
<p>But you might find it to be more efficient to just use the auto-correct feature. I just type "[[F", then hit my auto-correct key (bound to F5 I believe, but I've changed it), type enough of the class name for it to be selected in the autocorrect popup. Hit space, start typing alloc but let auto correct kick in. Close the brace. Start typing init, use autocorrect again.</p>
<p>You generally shouldn't need to create macros/scripts for something this trivial. The autocorrect, placeholders and autofill features should be all you really need.</p>
http://stackoverflow.com/questions/211616/hidden-features-of-objective-c/212690#2126907Answer by schwa for Hidden features of Objective-Cschwa2008-10-17T15:39:05Z2008-10-17T15:39:05Z<pre><code>#include <Foundation/Debug.h>
</code></pre>
<p>Lots of tools for trying to track down memory leaks, premature deallocs, and more in that header file.</p>
http://stackoverflow.com/questions/209170/how-much-does-it-cost-to-develop-an-iphone-application/210468#21046831Answer by schwa for How much does it cost to develop an iphone application?schwa2008-10-16T22:03:36Z2008-10-16T22:03:36Z<p>The Barack Obama app took 22 days to develop from first code to release. 3 developers (although not all of them were full time). 10 people total. Figure 500-1000 man hours. Contracting rates are $100-150/hr. Figure $50000-$150000. Compare your app to Obama.app and scale accordingly.</p>
http://stackoverflow.com/questions/207414/iphone-crash-reporter/208556#2085560Answer by schwa for iphone crash reporterschwa2008-10-16T13:29:16Z2008-10-16T13:29:16Z<p>@stephen I think the poster was asking about an iPhone app finding a crash log without access to a Mac/PC…</p>
<p>And I think the answer is - this was possible on 2.0 - but Apple clamped down on 2.1 and now prevent your app from accessing the logs. :-(</p>
http://stackoverflow.com/questions/205386/cocoa-bad-habits/205399#2053994Answer by schwa for Cocoa Bad Habitsschwa2008-10-15T16:24:02Z2008-10-15T16:24:02Z<p>Here's some of mine:</p>
<p>Throwing exceptions without any attempt to catch 'em. I've started to rely on NSError more and more to prevent NSExceptions from flying about like bullets in a John Woo movie, but I still have a lot of <em>exceptional</em> code out there.</p>
<p>Writing a quick class to do X, Y & Z and then forgetting to clean up in dealloc. Leaks ahoy!</p>
<p>Using strings directly in various places (KVO) instead of defining a constant and using that (see Dave Dribin's excellent <a href="http://www.dribin.org/dave/blog/archives/2008/09/24/proper_kvo_usage/" rel="nofollow">blog post</a> on KVO for more)</p>
http://stackoverflow.com/questions/204465/how-to-access-soap-services-from-iphone/205373#2053735Answer by schwa for How to access SOAP services from iPhoneschwa2008-10-15T16:17:19Z2008-10-15T16:17:19Z<p>One word: Don't.</p>
<p>OK obviously that isn't a real answer. But still SOAP should be avoided at all costs. ;-) Is it possible to add a proxy server between the iPhone and the web service? Perhaps something that converts REST into SOAP for you?</p>
<p>You <em>could</em> try <a href="http://csoap.sourceforge.net/" rel="nofollow">CSOAP</a>, a SOAP library that depends on libxml2 (which is included in the iPhone SDK).</p>
<p>I've written my own <a href="http://toxic-public.googlecode.com/svn/trunk/Frameworks/ToxicSOAP/" rel="nofollow">SOAP framework</a> for OSX. However it is not actively maintained and will require some time to port to the iPhone (you'll need to replace NSXML with <a href="http://code.google.com/p/touchcode/wiki/TouchXML" rel="nofollow">TouchXML</a> for a start)</p>
http://stackoverflow.com/questions/202471/is-it-possible-to-design-nscell-subclasses-in-interface-builder/203292#2032920Answer by schwa for Is it possible to design NSCell subclasses in Interface Builder?schwa2008-10-15T00:08:34Z2008-10-15T00:08:34Z<p>I do it like this:</p>
<pre><code>/* example of a silly way to load a UITableViewCell from a standalone nib */
+ (CEntryTableViewCell *)cell
{
// TODO -- this is really silly.
NSArray *theObjects = [[NSBundle mainBundle] loadNibNamed:@"EntryTableViewCell" owner:self options:NULL];
for (id theObject in theObjects)
if ([theObject isKindOfClass:self])
return(theObject);
NSAssert(NO, @"Could not find object of class CEntryTableViewCell in nib");
return(NULL);
}
</code></pre>
<p>However it isn't very efficient and if you're loading lot of data it might hurt you. Of course you should be using a reuseIdentifier which should force this code to only run a handful of times per table.</p>
http://stackoverflow.com/questions/174315/how-do-you-document-your-source-code-in-xcode/175380#1753804Answer by schwa for How do you document your source code in Xcode?schwa2008-10-06T17:46:01Z2008-10-06T17:46:01Z<p>Forget headerdoc. Headerdoc is a pile of /** poo */. Stick with doxygen. It works just fine and produces good documentation. It can understand (or at least not blow up on) the more unique Objc constructs (protocols, categories etc). Doxygen style doc markup is really a superset (with the right configuration) of headerdoc anyway.</p>
http://stackoverflow.com/questions/1734386/what-are-common-cocoa-pitfalls/1734392#1734392Comment by schwa on What are common Cocoa pitfalls?schwa2009-11-15T15:35:17Z2009-11-15T15:35:17ZMutating an array is a big no-no no matter what it is filled with.
I prefer to make a copy of the subview array:
for (UIView *subview in [[view.subviews copy] autorelease])
and then remove them as normal.http://stackoverflow.com/questions/1604673/how-do-i-embed-data-into-a-mac-os-x-mach-o-binary-files-text-section/1605237#1605237Comment by schwa on How do I embed data into a Mac OS X mach-o binary file's TEXT Section?schwa2009-10-22T10:14:22Z2009-10-22T10:14:22ZDoh. Obvious in retrospect. Thanks. http://stackoverflow.com/questions/688070/is-there-any-way-to-pass-an-nsarray-to-a-method-that-expects-a-variable-number-of/688092#688092Comment by schwa on Is there any way to pass an NSArray to a method that expects a variable number of arguments, such as +stringWithFormat:schwa2009-03-27T00:49:03Z2009-03-27T00:49:03ZThat's like using a hammer to crack a nut. There are much better solutions than this one. I wont vote this one done because it <i>is</i> a solution, just IMHO not a very good one.http://stackoverflow.com/questions/505180/how-to-change-the-text-color-on-uinavigationbar-button-items/684348#684348Comment by schwa on How to change the text color on UINavigationBar button itemsschwa2009-03-26T18:33:26Z2009-03-26T18:33:26ZRight. I didn't post the actual way to do it. Just the first method that worked.
Defensive programming ftw.http://stackoverflow.com/questions/505180/how-to-change-the-text-color-on-uinavigationbar-button-items/684367#684367Comment by schwa on How to change the text color on UINavigationBar button itemsschwa2009-03-26T03:02:28Z2009-03-26T03:02:28ZThat's a fine solution for a single nav bar. But as you admitted it doesn't scale well at all.
I'd probably use a solution like this normally. But I'm working on an app that has very dynamic ui requirements. I might be forced to do something more hacky :-(http://stackoverflow.com/questions/505180/how-to-change-the-text-color-on-uinavigationbar-button-items/684338#684338Comment by schwa on How to change the text color on UINavigationBar button itemsschwa2009-03-26T02:50:33Z2009-03-26T02:50:33ZAnd you can also code defensively to make sure you dont go boom. But still - I'd prefer a real API. ;-)http://stackoverflow.com/questions/505180/how-to-change-the-text-color-on-uinavigationbar-button-items/684338#684338Comment by schwa on How to change the text color on UINavigationBar button itemsschwa2009-03-26T02:41:55Z2009-03-26T02:41:55ZOh I take that back - it does work. See follow up answer...http://stackoverflow.com/questions/505180/how-to-change-the-text-color-on-uinavigationbar-button-items/684338#684338Comment by schwa on How to change the text color on UINavigationBar button itemsschwa2009-03-26T02:40:42Z2009-03-26T02:40:42ZYou can. But I'm doing a setTextColor:forStates: on my buttons and it seems to be ignored. Will persevere though.
Also that borders on private api (or at least private assumed knowledge of structure of UI) usage.http://stackoverflow.com/questions/209170/how-much-does-it-cost-to-develop-an-iphone-application/210468#210468Comment by schwa on How much does it cost to develop an iphone application?schwa2009-02-26T13:43:10Z2009-02-26T13:43:10ZUX, server/web dev, etc. Not everyone was full time on the project - but a few folks - maybe 1/2 the group (myself included) were.http://stackoverflow.com/questions/476455/is-there-a-library-for-iphone-to-work-with-hmac-sha-1-encodingComment by schwa on Is there a library for iPhone to work with HMAC-SHA-1 encodingschwa2009-01-24T23:10:06Z2009-01-24T23:10:06ZSo basically your iPhone developer is wrong...http://stackoverflow.com/questions/457568/iphone-development-memory-limitation-for-iphone-application/457730#457730Comment by schwa on iPhone Development - Memory limitation for iphone applicationschwa2009-01-19T19:52:04Z2009-01-19T19:52:04ZYeah that seems about right based on my experience. No clue about Safari using it's own memory though.http://stackoverflow.com/questions/406811/iphone-development-xmlparser-vs-libxml2-vs-touchxml/407925#407925Comment by schwa on iPhone Development - XMLParser vs. libxml2 vs. TouchXMLschwa2009-01-03T15:17:50Z2009-01-03T15:17:50ZHey Robbie, TouchXML does have support for writing XML.http://stackoverflow.com/questions/288412/deserializing-a-complex-json-result-array-of-dictionaries-with-touchjson/289193#289193Comment by schwa on Deserializing a complex JSON result (array of dictionaries) with TouchJSONschwa2008-11-14T05:15:54Z2008-11-14T05:15:54ZSee <a href="http://robubu.com/?p=24" rel="nofollow">robubu.com/?p=24</a> for more info. Top level arrays ought to be avoided.
Regardless TouchJSON can process them - see the API i listed above.
http://stackoverflow.com/questions/288412/deserializing-a-complex-json-result-array-of-dictionaries-with-touchjson/289175#289175Comment by schwa on Deserializing a complex JSON result (array of dictionaries) with TouchJSONschwa2008-11-14T05:14:48Z2008-11-14T05:14:48ZSee <a href="http://robubu.com/?p=24" rel="nofollow">robubu.com/?p=24</a> - "Safe JSON" is JSON with a top level dictionary. There are vulnerabilities with top level arrays.http://stackoverflow.com/questions/288412/deserializing-a-complex-json-result-array-of-dictionaries-with-touchjson/289175#289175Comment by schwa on Deserializing a complex JSON result (array of dictionaries) with TouchJSONschwa2008-11-14T04:09:27Z2008-11-14T04:09:27Z@sean - that's not true. Technically JSON with an array as a high level container is NOT legal JSON.