Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Titanium User Group March 2014 Austin Meetup

Titanium User Group March 2014 Austin Meetup

Meetup Agenda
1. Alloy Framework the MVC model

2. Sample Code using Alloy

3. Developer Resources


Jae W. Lee

March 19, 2014
Tweet

More Decks by Jae W. Lee

Other Decks in Technology

Transcript

  1. Model–view–controller (MVC) Models provide the business logic, containing the rules,

    data and state of the application. Views provide the GUI components to the user, either presenting data or allowing the user to interact with the model data. Controllers provide the glue between the model and view components in the form of application logic. [image from wikipedia]
  2. Alloy Framework Model is the index.xml View is the index.tss

    Controller is the index.js [image from wikipedia]
  3. Why Use Alloy? Structuring your app in a MVC model

    Better way to maintain your code Reduce the number of lines in code ... but it comes down to your preference.