I have a controller build for a web application with a web presentation. But now I need to create a iphone (mobile phone) version of this application.
Basically this is a blog application with comments. In the regular version comments are loaded at the same time as the entry. But on the mobile application I want to comments to be load on request. How do you achieve that.
- 1 controller 2 views : 2 different action (one for each view). But I can have a lot of actino that will be similar but not exactly. And routing will be an issue
- 2 controller 1 view per controller : 1 manage the regular version the other manage the mobile version.
I open to other ideas. BTW I use Zend Framework.