public override void ViewWillAppear(bool animated)
        {
            productsListScreen = new ProductsListScreen(products);
             		productsMapScreen = new ProductsMapScreen(position, products);
            this.SetViewControllers(new UIViewController[]{ productsMapScreen, productsListScreen }, false);

            base.ViewWillAppear (animated);
        }
Пример #2
0
        public override void ViewWillAppear(bool animated)
        {
            productsListScreen = new ProductsListScreen(products);
            productsMapScreen  = new ProductsMapScreen(position, products);
            this.SetViewControllers(new UIViewController[] { productsMapScreen, productsListScreen }, false);

            base.ViewWillAppear(animated);
        }
Пример #3
0
 public ProductTableViewDelegate(ProductsListScreen controller, IList <Product> products)
 {
     this.controller = controller;
     this.products   = products;
 }
Пример #4
0
 public ProductTableViewDelegate(ProductsListScreen controller, IList<Product> products)
 {
     this.controller = controller;
     this.products = products;
 }