public override void ViewDidLoad() { base.ViewDidLoad(); iDataSource = new KonfigTouchTableDataSource(this); this.TableView.DataSource = iDataSource; this.TableView.Delegate = new KonfigTouchTableDelegate(iDataSource); this.TableView.SectionHeaderHeight = 25.0f; this.TableView.RowHeight = 60.0f; this.TableView.BackgroundColor = UIColor.Black; this.TableView.SeparatorStyle = UITableViewCellSeparatorStyle.None; this.TableView.ShowsHorizontalScrollIndicator = false; this.TableView.IndicatorStyle = UIScrollViewIndicatorStyle.White; }
public KonfigTouchTableDelegate(KonfigTouchTableDataSource aDataSource) { iDataSource = aDataSource; }