views:

65

answers:

2

I need some links on various mobile development architectures and design patterns, for example, in iPhone Development MVC is been used, same like this, what are the various other architectures which are being used in mobile application development.

A: 

Here are two books whose table of contents (at least) you should read.

QuickRecipesOnSymbianOS
+1  A: 

Command, Flyweight, Abstract Factory, Chain of Responsibility, Adapter and so on. Mobile application development is not very different from server and desktop application development (nowadays). For example, if you take a look at Cocoa Fundamentals Guide chapter 4 you will notice that all you need is to study these.

Ville Laitila