public ReactiveCollectionViewSource(UICollectionView collectionView) { setupRxObj(); var adapter = new UICollectionViewAdapter(collectionView); this.commonSource = new CommonReactiveSource <UICollectionView, UICollectionViewCell, CollectionViewSectionInformation>(adapter); }
public ReactiveTableViewSource(UITableView tableView) { setupRxObj(); var adapter = new UITableViewAdapter(tableView); this.commonSource = new CommonReactiveSource <UITableView, UITableViewCell, TableSectionInformation>(adapter); }
public ReactiveTableViewSource(UITableView tableView, IEnumerable <TableSectionInformation> sectionInformation) { var adapter = new UITableViewAdapter(tableView); this.commonSource = new CommonReactiveSource <UITableView, UITableViewCell>(adapter, sectionInformation); }
public ReactiveCollectionViewSource(UICollectionView collectionView, IEnumerable <CollectionViewSectionInformation> sectionInformation) { var adapter = new UICollectionViewAdapter(collectionView); this.commonSource = new CommonReactiveSource <UICollectionView, UICollectionViewCell>(adapter, sectionInformation); }