MvvmCross is not well suited for storyboard
The reason is that Storyboards have their own logic (e.g. Segue navigation), which really belongs inside the actions in MvvmCross ViewModels.
With that said ... if you just want to use data binding, then you can ... simply:
- add links to the MvvmCross assembly
- change your storyboard application so that it runs the minimum installation code
- use the base
Mvx*ViewController classes instead of the UI*ViewController - and similarly use the
MvxTableViewCell (or similar) for the base class for any TableViewCell used.
There is currently no documentation for this ... but there is one sample - placed under the very strange name 'eh' - https://github.com/slodge/eh - this is just a simple pair of views of the master part, and you need to create it against latest binaries - e.g. https://github.com/slodge/MvvmCross-Binaries/tree/master/XS-iOS-Mac
source share