public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
        {
            BUYCollection collection = null;
            if (indexPath.Section == 1) {
                collection = collections [indexPath.Row];
            }

            var productListViewController = new ProductListViewController (client, collection);
            NavigationController.PushViewController (productListViewController, true);
        }
예제 #2
0
        public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
        {
            Collection collection = null;

            if (indexPath.Section == 1)
            {
                collection = collections[indexPath.Row];
            }

            var productListViewController = new ProductListViewController(client, collection);

            NavigationController.PushViewController(productListViewController, true);
        }