i have this code when i popup a modal in my MainViewController
ModalViewController controller = Storyboard.InstantiateViewController ("ModalViewController") as ModalViewController;
this.PresentViewController(controller,true,null);
and at the other end in my ModalViewController I have here an event where this will be dismiss. and I use this code. DismissViewController(true,null);
is it possible that my MainViewController can catch the event when my modal is dismiss?