Exemple #1
0
 public CategorySource(NSMutableDictionary[] fileArray, CategoryVC parent, bool listMode = true)
 {
     this.parent    = parent;
     this.fileArray = fileArray;
     this.listMode  = listMode;
 }
Exemple #2
0
        public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
        {
            CategoryVC nav = (CategoryVC)parent.Storyboard.InstantiateViewController("CategoryVC");

            parent.NavigationController.PushViewController(nav, true);
        }