public ListExampleTableViewSource(IMvxTableRowCommands viewModel, UITableView tableView)
     : base(tableView)
 {
     this.viewModel = viewModel;
     // Warning this string must line up with the registered string for the row class.
     tableView.RegisterClassForCellReuse (typeof(ListExampleTableRow),
         new NSString ("ListExampleTableRow"));
 }
Exemplo n.º 2
0
 public ListExampleTableViewSource(IMvxTableRowCommands viewModel, UITableView tableView)
     : base(tableView)
 {
     this.viewModel = viewModel;
     // Warning this string must line up with the registered string for the row class.
     tableView.RegisterClassForCellReuse(typeof(ListExampleTableRow),
                                         new NSString("ListExampleTableRow"));
 }