Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using appledoc for generating docsets. Everything is good, except everytime I rebuild it(with using my plist and run shell script) I must restart xcode to see changes.

Is there a way for force xcode to reload docset ?

share|improve this question

2 Answers

Not really what you're after and a shameless pitch of one of my apps, but you might want to use Dash for documentation browsing/searching, where you won't have that problem :)

share|improve this answer

Let's assume Doxygen output folder is ~/Documents/myDocSet. Inside, there's the folder html.

Create and launch the Applescript loadDocSet.scpt

tell application "Xcode"
    load documentation set with path
        "~/Library/Developer/Shared/Documentation/DocSets/myDocSet.docset"
end tell
share|improve this answer
It seems this script no longer works with the latest release 4.4.1 of Xcode. Quitting and then relaunching Xcode are required. – Rei Vilo Aug 10 '12 at 0:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.