MVC

 I have been developing for iPhone for almost 2 years now.  I got started when my company asked if anyone had experience in iPhone development and of course I raised my hand and said "I do"!  Little did they know,  I had never opened xcode let alone compiled a single iPhone app.

dov 20/02/2011 - 11:01

Spine is an MVC framework to build client side web applications. It is modeled after Rails, with integration for the server side. It is also built using Coffeescript and supports writing applications in Coffeescript.

 

Another core value is that it focuses on making interactions with the server asynchronous, thus reducing the percieved load time of data.

ittayd 17/11/2011 - 05:52

MVC based applications often offer some kind of a mediation between the actual Flex view component and the rest of the system.

PureMVC has its Mediator, Cairngorm offer the View Helper (though they not encourage using it). I'll focus on PureMVC.

 

When the view component is dynamically created, you'll probably want to create it's mediator dynamically as well.  This is a very common scenario in large applications.

 

First thing comes to mind in this scenario is using the view component's CreationComplete or Initialize events for creating its mediator.
 

It is very tempting doing so, especially when guaranteed that by the time these events occur, the component children are created, and the mediator can access them without getting exceptions.

 

The problem

ilan 04/08/2010 - 22:36
Syndicate content