Tag open source

Mention on Mauro Del Rio’s Blog

I just read an interesting post on Cocoa with Love, and I discover an interesting tool to make my life easier: Now I can create my UI with IB, and the tool will convert it to a .m file. GREAT!!! The tool is called nib2objc and it can be found on Github. Published on Mauro [...]

Mention on Matt Gallagher’s Blog

Layout of the content in code is probably the weakest part of the approach I’ve presented. To make it easier, you can pre-layout everything in Interface Builder and copy the layout into code. For complicated layouts, you could even try using nib2objc to convert your XIB files to code automatically (although I’ve never done this, [...]

Mention on ArsTechnica

A handy open source utility by Adrian Kosmaczewski allows you to convert Interface Builder files to Objective-C code. With it, you can extract all the layout information and properties of your visual design and transform that into code. Nib2objc does exactly what its name suggests. With it, you can generate converted code that takes into [...]

Mention on StackOverflow

Hope Adrian Kosmaczewski’s work can save your time from reinventing the wheels: http://github.com/akosma/iphonerestwrapper/tree/master And, it’s Public Domain. Quote appeared in Stack Overflow.