Untitled


SUBMITTED BY: antoineh1

DATE: May 4, 2016, 6:03 p.m.

FORMAT: Text only

SIZE: 570 Bytes

HITS: 717

  1. // Setting the View inside the Scroll View //
  2. viewOffers.ContentSize = new CoreGraphics.CGSize(320f, 1100f);
  3. ShowOffersViewController vc = Storyboard.InstantiateViewController("ShowOffersView") as ShowOffersViewController;
  4. viewOffers.AddSubview (vc.View);
  5. ChequesViewController test = Storyboard.InstantiateViewController("ChequesView") as ChequesViewController;
  6. // This
  7. ParentViewController.NavigationController.PushViewController(test, true);
  8. // and this and neither work
  9. NavigationController.PushViewController(test, true);

comments powered by Disqus