iOS 17.4 hangs/freezes

Hi,

I have an app in the AppStore and some users reported problems when pressing a NavigationLink that leads to a new view since updating to iOS 17.4. The view that should open only contains a Text("Hello").

The strange thing is: I have to buttons leading to the same view, one is working and the other is not!

Not working:

NavigationLink(destination: AddServerView()) {
  Image(systemName: "plus.circle.fill")
}

Working:

NavigationLink(destination: AddServerView()) {
  Image(systemName: "plus.circle.fill")
}

What is even more strange is, that the button reported working from user1 doesn't work for user2. User1 reported the problem also to be present on iPadOS 17.4.

The problem never happened before iOS 17.4 and I can't reproduce any of the problems on multiple devices running iOS 17.4 including the simulator with multiple devices.

I hope somebody can help in this regard or is experiencing issues like this.

Kind regards

  • Sorry I copied the wrong code for "not working". It is:

    NavigationLink(destination: AddServerView()) { Label("Add Server", systemImage: "plus.circle.fill") }

    For another user I have a report on video that both Buttons doesn't work.

Add a Comment

Replies

Hi @ITSS , please file a bug report at https://feedbackassistant.apple.com -> use Developer Technologies & SDKs and choose SwiftUI for the technology.

Include the description of what's going wrong and a small sample if you can.

Thank you! Please post the FB number here.

  • Thank you, the FB number is FB13685555

Add a Comment