I'm trying to figure out how to have a view, let's call it ThirdView, slide up from the bottom of the screen when a user clicks a particular button on SecondView.
thanks.
I'm trying to figure out how to have a view, let's call it ThirdView, slide up from the bottom of the screen when a user clicks a particular button on SecondView.
thanks.
Hi Driss,
You'll want to create the ThirdView in your SecondView and Present it as a Modal View passing in the secondView in the constructor. This will be the easiest way of animating it in the way you would like.
var thirdView = new ThirdView(secondView);
this.PresentModalViewController(thirdView, true);
in your third view, you'll want to call the passed in SecondView and call
secondView.DismissModalViewControllerAnimated(true);
Hope this helps,
ChrisNTR