public void CategoryRowToImageStackDelegate(Category category)
        {
            /*
             * Update the image stacks based on the category chosen
             */
            collectionsNavigationController.View.Hidden = true;
            imageStackSplitViewController.setCategory(category);

            imageStackTable.UpdateSelectedCategory(category);
            imageStackSplitViewController.updateCategoryNameLabel(category.CategoryName);
            imageStackTable.UpdateDataSource(category.ID);
            imageStackTableViewController.ReloadTableData();
            //collectionsNavigationController.View.Hidden = true;
        }
 public override void ViewWillAppear(bool animated)
 {
     base.ViewWillAppear(animated);
     imageStackTableViewController.ReloadTableData();
 }