I am using StoryBoards in Monotouch and have a ViewController which has been designated as the Initial VC. I have a second VC that I want to display programmatically from the ViewDidLoad method of the first VC. The Objective-C steps are like so
- Instantiate second VC via
Storyboard.InstantiateViewController("SecondVC")
- Set its
ModalTransitionalStyle
- Set its delegate to self like
secondVC.delegate = self;
- use
this.PresentViewController(secondVC, true, nil)
How do I accomplish that in MonoTouch C# code?
the VC that I instantiate using Storyboard.Ins..
method does not have a delegate or Delegate property to set. And although my code compiles, I do not see the second view. I see only the first View
Any help highly appreciated
thanks