Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any MVVM-like frameworks for objective-c on iOS? [closed]

Are there any MVVM frameworks for Objective-C that are widely used on iOS (iPhone/iPad)?

I'm a .net developer who has just started with iOS (read tutorials, done a couple of simple test apps), and from first perspective iOS's MVC looks to me pretty much like WinForms (correct me please if I'm wrong). WinForms "evolved" to WPF with MVVM, making Separation of Concerns way easier.

Are there something similar to MVVM for iOS? In the MonoTouch world I saw at least mvvmcross applying MVVM. What about Objective-C? Or generally there's no need for this in iOS world?

like image 547
Shaddix Avatar asked Aug 22 '12 14:08

Shaddix


1 Answers

MvvmCross relies heavily on reflection, and on public c# properties and events. I did look at the idea of trying to extend the framework into objC and uikit, but really the structure of its function/selector API didn't seem to lend itself nicely to the databinding part of mvvm

like image 94
Stuart Avatar answered Oct 07 '22 11:10

Stuart