My code looks similiar to this https://github.com/MvvmCross/MvvmCross-Tutorials/blob/master/Sample%20-%20CirriousConference/Cirrious.Conference.UI.Touch/Views/TwitterView.cs
In the TableSource class, is it possible to access the TwitterViewModel ViewModel Property without creating a new instance of the vm, making it static or using event-aggregation?
for example:
public override float GetHeightForRow (UITableView tableView, NSIndexPath indexPath)
{
return ViewModel.DoGetHeightForRow();
}
Since that class is nested within the View, you can just add access - exactly as you would any other C# class - e.g: