Generating forms from models (a la django ModelForms) in Objective-C - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:08:07Z http://stackoverflow.com/feeds/question/1081402 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081402/generating-forms-from-models-a-la-django-modelforms-in-objective-c 1 Generating forms from models (a la django ModelForms) in Objective-C Prairiedogg 2009-07-04T03:08:26Z 2009-07-09T12:34:25Z <p>I'm taking the plunge into iPhone development after about two years working with django. As I've done tutorials and read documentation, one of the things that strikes me as inconvenient about the various libraries used in iPhone development is the amount of repetition required when creating user input forms for data models. </p> <p>I know of two conventional approaches to user input form creation:</p> <ol> <li><p>Create a group of UITextFields in Interface Builder that correspond with the properties on the model class and link them up to corresponding IBOutlets on a custom form controller.</p></li> <li><p>Create a form view programatically with UITextFields in tables with a custom form view controller class. The class keeps a list of names that correspond to the properties of a model in an array, and then iterate over the array to create UITextFields for each table cell. Use special casing to determine which model attribute is being iterated over, and use that information to create table cells with corresponding UILabels and UITextFields.*</p></li> </ol> <p>Of the two, only the first seems practical for iterative development, the second is painfully verbose and extremely difficult (for me) to read. With the introspective capabilities of Objective-C it seems like it would be possible to write code that accepted a model class as an argument and generate a form controller (and perhaps even a form view) from that information at runtime.</p> <p>So I have three questions:</p> <ol> <li><p>Are there conventional alternate approaches to creating form views and controllers for models other than the two I've listed above? I'm not loving either approach I've listed there.</p></li> <li><p>Is automatic generation of form controllers / views at runtime feasible in Objective-C, or am I just barking up the wrong tree?</p></li> <li><p>Has such automatic generation been attempted or accomplished already? (a little googling turned up nothing)</p></li> </ol> <p>*My main reference for this comes from Example #6 in Chapter 9: Navigation Controllers and Table Views of Apress' "<a href="http://apress.com/book/view/9781430224594" rel="nofollow">Beginning iPhone 3 Development</a>"</p> http://stackoverflow.com/questions/1081402/generating-forms-from-models-a-la-django-modelforms-in-objective-c/1081858#1081858 0 Answer by Tom Dalling for Generating forms from models (a la django ModelForms) in Objective-C Tom Dalling 2009-07-04T09:15:30Z 2009-07-04T09:15:30Z <p>It seems like your trying to write an iPhone app like you would a Django website, but the two are completely different.</p> <p>Here is a quick rundown of MVC in cocoa:</p> <ol> <li>Write your model classes independent of any controller or view</li> <li>Write a controller that stores the model class as a key (e.g. -[MyController model] and -[MyController setModel:])</li> <li>Open interface builder and design your view. Use bindings or code in the controller to make the view interact with the model</li> </ol> http://stackoverflow.com/questions/1081402/generating-forms-from-models-a-la-django-modelforms-in-objective-c/1103569#1103569 1 Answer by Barney Mattox for Generating forms from models (a la django ModelForms) in Objective-C Barney Mattox 2009-07-09T12:34:25Z 2009-07-09T12:34:25Z <p>Keep in mind that systems like Django are based on completely scripted environments. The language constructs can be dynamically created, interpreted, and re-interpreted many times during the execution process.</p> <p>Concepts like business rules and forms logic can literally be written as pages are being sent to the client/browser.</p> <p>For compiled languages, all of these moving parts must be pre-created and fully resolved (for the most part). Most of the classic UML based source generation or template based systems were complex behemoths that generated very difficult to use code.</p> <p>The MVC model and libraries like Cocoa and Carbon, though possibly not as "elegant" as the techniques possible in Django, did evolve around the need to tackle some of the same challenges.</p> <p>Although other alternatives exist, such as marrying Objective-C to an interpreted language like LUA or Python is feasible. And there are several open source projects focused at building completely dynamic "over the air" user interface clients that sit on top of server based systems which broadcast details of how the interface looks and behaves. (I can't find the project but will edit when I do)</p> <p>I'm not aware of any major work in this area and suspect that most normal iPhone applications simply haven't been complex enough either in scope or degree of variability to warrant the effort to create these automated systems.</p> <p>Rarely is the user interface the complex part of an iPhone application, perhaps with the exception of a few unique games out there.</p> <p>Barney</p>