public UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath) { var cell = MessageList.DequeueReusableCell("MessageCell", indexPath); cell.TextLabel.Text = ViewModel.MessageList[indexPath.Row].MessageBody; return(cell); }