Skip to content

Instantly share code, notes, and snippets.

View chkimes's full-sized avatar

Chad Kimes chkimes

  • Microsoft
  • Raleigh, NC
View GitHub Profile
public class MvxCustomTableViewSource<T> : MvxTableViewSource where T : UITableViewCell
{
private readonly string _cellIdentifier;
public MvxCustomTableViewSource(UITableView tableView) : this(tableView, typeof(T).ToString())
{
}
public MvxCustomTableViewSource(UITableView tableView, string cellIdentifier) : base(tableView)
{