Post

Replies

Boosts

Views

Activity

Reply to Changing minimum deployment to iOS 17.0 Xcode compiler issues
@darkpaw The point I tried to make was there appears to be a functional limit now as to how many .onChange calls you can have in a file that did not exist with the deprecated call. I can make ANY 9 of 13 updated .onChange calls work, just not all 13 at once. The code changes themselves are trivially simple: iOS 16: .onChange(of: modeSelection) { newValue in workout.modeSelection = newValue settingsModified = true } iOS 17: .onChange(of: modeSelection) { workout.modeSelection = modeSelection settingsModified = true }
Topic: UI Frameworks SubTopic: SwiftUI
1w