Esempio n. 1
0
 public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
 {
     if (indexPath.Row >= this.viewModel.Books.Count - 1)
     {
         this.viewModel.Books.LoadMore();
     }
     return(BookTableCell.CreateCell(tableView, indexPath, this.viewModel.Books[indexPath.Row]));
 }
 public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
 {
     return(BookTableCell.CreateCell(tableView, indexPath, this.GetBookModel(indexPath.Row)));
 }