public ReactiveTableViewSource(UITableView tableView)
        {
            setupRxObj();
            var adapter = new UITableViewAdapter(tableView);

            this.commonSource = new CommonReactiveSource <UITableView, UITableViewCell, TableSectionInformation>(adapter);
        }
Exemple #2
0
        public ReactiveTableViewSource(UITableView tableView, IEnumerable <TableSectionInformation> sectionInformation)
        {
            var adapter = new UITableViewAdapter(tableView);

            this.commonSource = new CommonReactiveSource <UITableView, UITableViewCell>(adapter, sectionInformation);
        }