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);
        }
Exemplo n.º 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);
        }
Exemplo n.º 3
0
 public ProductTableViewDelegate(ProductsListScreen controller, IList <Product> products)
 {
     this.controller = controller;
     this.products   = products;
 }
Exemplo n.º 4
0
 public ProductTableViewDelegate(ProductsListScreen controller, IList<Product> products)
 {
     this.controller = controller;
     this.products = products;
 }