Are there any MVVM frameworks for objective-c in iOS?

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

I am a .net developer who has just started working with iOS (read tutorials, made some simple test applications), and at first glance iOS MVC looks pretty much like WinForms to me (correct me if I am wrong). WinForms "evolved" into WPF with MVVM, simplifying the separation of problems.

Is there something similar to MVVM for iOS? In the MonoTouch world, I have seen at least mvvmcross using MVVM. What about Objective-C? Or is there really no need for this in the iOS world?

+7
source share
1 answer

MvvmCross is heavily dependent on reflection, as well as on publicly available C # properties and events. I was looking at the idea of ​​trying to expand the structure in objC and uikit, but in fact the structure of its API / API selector didn't seem pretty for the databinding part of mvvm

+3
source

All Articles