その後のその後

iOSエンジニア 堤 修一のブログ github.com/shu223

Xcode 4 のプラグイン開発方法

ちょっと調べてみたのですが、
http://stackoverflow.com/questions/6316921/xcode-4-plugin-development

As far as I know there is no official way to create Xcode 4 plugins (just like there wasn't one for v3.x).

"Xcode 4 does support user-defined plugins, see CLITool-InfoPlist for an example of a working Xcode 4 plugin. You just have to add XC4Compatible (true) in the Info.plist."

Xcode does not have a public plug-in API.

プラグイン開発手法はあるとかないとか諸説入り乱れていてよくわかりません。。


「ある」という意見の根拠として上がっている
https://github.com/0xced/CLITool-InfoPlist
というgithubリポジトリのREADMEには、

Xcode plugin to process Info.plist file for CLI Tool targets

This plugin has been tested on Xcode 3.1, 3.2, 4.0, 4.1 and 4.2.

とあるので、サードパーティ製プラグイン自体は確かに存在するものの、

Because neither the Xcode plugin API nor Xcode internals are not documented, this plugin might break at anytime.

とあるので、公式にはサポートされていない、というのが現状のようです。


※諸々ドキュメントとかツールの中身をちゃんと見てないので、間違い等あるかもしれません。