5

Does anything like the T4 text template generation tool of visual studio exist for XCode?

Thanks for help, Enyra

Enyra
  • 17,542
  • 12
  • 35
  • 44
  • Does xCode have an extensibility model? If so, you could perhaps use the Mono implementation of T4 with a suitable binding shim to hook it to the (presumably) native code of xCode's extensibility. – GarethJ Apr 16 '11 at 00:50

1 Answers1

1

I recommend using XSLT template generation to create objective c files. T4 just allows you to write code in your templates which is not necessary, instead just create an XMl model and use XSLT to transform it into code.

Maybe use a tool like this one? http://ditchnet.org/xslpalette/

Chris Lucian
  • 1,013
  • 6
  • 15