Alerts unresponsive ios26

since upgrading my dev phone to ios26 the pop alerts in my app no longer respond to user touch.

What's a "pop alert"?

Can you show us your code?

If you've tried everything, raise a feedback report here: https://feedbackassistant.apple.com/ and provide more useful information than you've given in this post.

Hi, thanks for the reply,

The weird thing is the code used to work until I upgraded to ios26 beta

The code is pretty standard:

Button(action: { showAlert1 = true }) { HStack { Image(systemName: "arrow.up.square") .resizable() .scaledToFit() .frame(width: 24, height: 24) } } .alert(isPresented: $showAlert1) { Alert( title: Text("Title"), message: Text("Message"), primaryButton: .default(Text("Yes")) { impactMed.impactOccurred() appData.showRoleView = false }, secondaryButton: .cancel() ) }

Alerts unresponsive ios26
 
 
Q