Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 4 - Documentation: How to show the Table of Contents?

Tags:

xcode4

iphone

simple question, but after jumping over to the new XCode 4 IDE and open the organizer and select the "Documentation", i can´t find a way how to display the "table of contents" of a visible class..

I think about a way how to display it before and the current web-documentation: Hope someone can answer it.. Thanks

table of contents

like image 691
geforce Avatar asked Mar 23 '11 16:03

geforce


1 Answers

sudo egrep -lRZ "Prototype.Browser.Xcode4OrNewer=Prototype.Browser.XcodeVersion<1000;" /Library/Developer/Documentation/DocSets | xargs -0 -L % sudo sed -i '' -e 's/Prototype\.Browser\.Xcode4OrNewer\=Prototype\.Browser\.XcodeVersion\<1000\;/Prototype\.Browser\.Xcode4OrNewer\=false\;/g'

It will fix up some of the javascript that disables the ToC in Xcode 4. Make a backup of your developer DocSets if you like.

like image 98
Robert Payne Avatar answered Sep 28 '22 00:09

Robert Payne