This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
{ |