tags:

views:

44

answers:

1
+1  Q: 

Interface Builder

What is the difference between creating an IPhone application using Interface Builder and without it?

A: 

Interface builder is simply an application that can help you place GUI elements and then associate IBOutlets and other in-code functions. you can go into Dashcode and actually read the code generated by Interface Builder but I think you will find that it is LONG and repetitive. Interface builder simply makes it easier to get the interface elements where and how you want them using a GUI. you don't NEED it but its sure useful.

you can create a full interface without an .xib or interfacebuilder you just have to write more code.

Ed Wist