Sub Process_Globals
Public App As Application
Public NavControl As NavigationController
Private Page1 As Page
Private DialogPage As Page
End Sub
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Page1.Initialize("Page1")
Page1.RootPanel.Color = Colors.Green
NavControl.ShowPage(Page1)
DialogPage.Initialize("DialogPage")
DialogPage.RootPanel.Color = Colors.Red
End Sub
Sub Page1_Click
PresentPage(Page1, DialogPage)
End Sub
Sub DialogPage_Click
DismissPage(Page1)
End Sub
Sub PresentPage(Parent As Page, dialog As Page)
Dim no As NativeObject = Parent
no.RunMethod("presentViewController:animated:completion:", Array(dialog, True, Null))
End Sub
Sub DismissPage(Parent As Page)
Dim no As NativeObject = Parent
no.RunMethod("dismissViewControllerAnimated:completion:", Array(True, Null))
End Sub