iOS Question ActionSheet

Arnaud

Active Member
Licensed User
Longtime User
Hello,

I just installed iOS 27 on iPhone, but it seems the ActionSheet isn't working; nothing is displayed...

Work fine before on iOS 26.2.

here a easy test code:

Actionsheet:
Dim sheet As ActionSheet
sheet.Initialize("sheet", "", "", "", Array("Cat", "Dog", "Monkey", "Rat"))
sheet.Show(pg.RootPanel)
Wait For sheet_Click (Animal As String)
Log(Animal)
 
Last edited:

ilan

Expert
Licensed User
Longtime User
i have the same issue, i switch to b4xdialog and gave it a similar look like the action sheet. you can see the snipped here:

 
Upvote 0

mcqueccu

Expert
Licensed User
Longtime User
Try this

 
Upvote 0
Top