Hello,
There is an old code in the from which is depreceated:
The new one is I think this one :
How can I use this popover style with nativeobject?
Thanks
There is an old code in the from which is depreceated:
B4X:
Sub showpopup(Parent As Page, dialog As Page)
Dim no As NativeObject = dialog
no.SetField("modalTransitionStyle",0)
Dim no2 As NativeObject = Parent
no2.RunMethod("presentModalViewController:animated:", Array(dialog, True))
End Sub
The new one is I think this one :
UIModalPresentationStyle.popover | Apple Developer Documentation
A presentation style where the content is displayed in a popover view.
developer.apple.com
How can I use this popover style with nativeobject?
Thanks