Jump to content
schaumermal

ShowModal do not work under IOS 16.1.1

Recommended Posts

Hello

 

So far, I have always called a new form as follows in my apps:

 

if Not Assigned(OrderDetail) then
    Application.CreateForm(TOrderDetail, OrderDetail);

 

OrderDetail.ShowModal(
procedure (ModalResult :TModalResult)
begin
   "do the things that are necessary after come back"
end);

 

This works without problems on my Android devices (Android 6 till 13) and on my iPad with 16.1.1 but NOT on the iPhone with IOS 16.1.1

The app freezes on iPhone with this routine.

 

I would like to keep this logic that I can perform  actions after returning.

 

Is there a solution for this?

 

 

Edited by schaumermal

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×