Esempio n. 1
0
 public static IDisposable Bind <TModel, TCell>(this UITableView tableView, ReactiveSectionedListTableViewSource <TModel, TCell> dataSource)
     where TCell : BaseTableViewCell <TModel>
 {
     return(new ReactiveTableViewBinder <TModel, TCell>(tableView, dataSource));
 }
 public static IDisposable Bind <TModel, TCell>(this IReactive <UITableView> tableView, ReactiveSectionedListTableViewSource <TModel, TCell> dataSource)
     where TCell : BaseTableViewCell <TModel>
 => new ReactiveTableViewBinder <TModel, TCell>(tableView.Base, dataSource);