I kept ending up in this page when looking for a way to, by default, HIDE the TOC in the Xcode 4 documentation. Here's my solution:
as I only use SnowLeopard documentation, I ended up modifying only the file at
/Library/Developer/Documentation/DocSets/com.apple.adc.documentation.AppleSnowLeopard.CoreReference.docset/Contents/Resources/Documents/Resources/585/JavaScript/header_toc.js
if(Cookie.get("toc-visible")==="false"){TOC.hide()}else{TOC.show()}
to
if(Cookie.get("toc-visible")==="false"){TOC.hide()}else{TOC.hide()}
So, to SHOW it by default, just put {TOC.show()}else{TOC.show()} in the header_toc.js files in your docsets.