I've been looking all over the place but I can't find anything. Does anyone know where to find documentation on how to create an Xcode 4 plugin?
|
|
As far as I know there is no official way to create Xcode 4 plugins (just like there wasn't one for v3.x). Here is an openradar on Xcode's lack of plugin support:
Please dupe this if you want plugins! Edit: Just stumbled upon this:
https://github.com/0xced/CLITool-InfoPlist That being said these GitHub repos might be handy, too: Further more mogenerator's Xmod plugin might be a good starting point. |
|||||||||||||||||
|
|
Have a look at this new plugin: https://github.com/sap-production/xcode-ide-maven-integration. Maybe you can derive some concepts for your plugin. |
|||
|
|
|
Best way to learn is to look at github plugin code (see long list below):
Because its not an official standard I noticed each sample loads in different ways. XCODE PLUGIN SAMPLES compiled by either searching github/web for
This is the Xcode Editor window class name or Info-list key
TO GET TO THE NSTextView that is the console https://github.com/sap-production/xcode-ide-maven-integration
|
|||
|
|
|
Xcode does not have a public plug-in API. This was the case with earlier versions, and is the case with Xcode 4 as well. |
|||||
|
|
|
Yesterday ColorSense for Xcode 4 was released on Github. Since the code is really compact spread over just 3 classes, I think you should take a look over there. |
||||
|
|
|
No, Xcode doesn't support plugins, alternatively you may try AppCode, another IDE for iOS/MacOS, it does support plugins development. |
|||
|
|
|
Take a look at this article: Xcode 4: Interface Builder Plugins |
|||
|
|
