Inheritance: UITableViewController
コード例 #1
0
 public TableDelegate(SubGroupViewController tvc)
 {
     this.tvc = tvc;
 }
コード例 #2
0
            public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
            {
                string selectedGroup = tvc.RootData.ElementAt(indexPath.Row);

                if(sgvc == null)
                    sgvc = new SubGroupViewController(selectedGroup);

                tvc.NavigationController.PushViewController(sgvc,true);
            }
コード例 #3
0
 public DataSource(SubGroupViewController tvc)
 {
     this.tvc = tvc;
 }