So I have a build script which runs after building my library in xcode which generates the appledoc documentation and installs it into XCode.
Annoyingly this puts all the HTML etc into an obscure folder in the (hidden) Library folder in my user home folder.
What would be really great would be to be able to copy the HTML out of these docsets and put them into a folder in the project directory. This can then be copied into a zipped archive of the library when it needs to be published.
If it is a case of doing it manually (looking through appledoc's help page it doesn't seem like it can do this out of the box) then I can do that, but is there any way to get the final directory path from appledoc? The only way that I can see would be to pull apart the output file and find the path in there.
Thanks for any help! :)
Tom