Ejemplo n.º 1
0
        public UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = MessageList.DequeueReusableCell("MessageCell", indexPath);

            cell.TextLabel.Text = ViewModel.MessageList[indexPath.Row].MessageBody;

            return(cell);
        }