Can Any One tell me how to use UIModalTransitionStyleFlipHorizontal

I am trying to flip screen in and out , the documentation shows the apple documentation on this but Xojo does not explain how to use it.

Thanks In Advance
Roger

Can you post a link to the Apple docs that you are looking at?

@Jason_Parsley Apple Developer Documentation

@roger_holmes You can use iOSDesignExtensions MobileScreen.PushToShowModalFlipXC

1 Like

Hi Jeremie,
I have tried but keep getting crash. If you chang Line 42 in vHome : table : selection changed from :
Self.PushToShowModalXC(v, ViewExtensionsXC.UIModalPresentationStyle.formSheet)
To
self.PushToShowModalFlipXC(v, ViewExtensionsXC.UIModalPresentationStyle.formSheet)

you will crash.

It Crashes In PushToShowModalFlipXC Here :

If callback Is Nil Then
presentViewController(parent.ViewControllerHandle, navController, Animate, Nil). <-----------
Else
presentViewController(parent.ViewControllerHandle, navController, Animate, callback.handle)
End If
what should I look For ?

Roger