How to force Xcode to use custom DTD for autocomplete?

Is there an easy way to get Xcode to use a custom DTD for autocompletion, or require one of them to write an extension for the development environment to get the job to work? Eclipse supports using DTD to autocomplete XML files, but is there a similar feature in Xcode?

The structure of the XML files used in our application is defined in DTD, so it would be extremely useful to get good autocomplete of all possible tags and attributes for Xcode.

+7
source share
1 answer

I found this when searching through my file system:

/Developer/Library/PrivateFrameworks/DVTFoundation.framework/Resources/*. Xclangspec

These files may interest you.

0
source

All Articles