Post

Replies

Boosts

Views

Activity

Comment on SwiftUI Gestures prevent scrolling with iOS 18
I decided to not use .simultaneousGesture and keep gesture support disabled for the moment. The problem is that with Swift Charts you can long press and reveal a RuleMark. The problem is that while I RuleMark is revealed the user can drag to reveal the RuleMark values for other entries in the chart. That is triggering my drag logic. As with scrolling, this was not a problem with iOS 17.
Sep ’24
Comment on Change in behavior for .isToggle trait
Thank you for responding. I actually was already using .accessibilityAddTraits(.isToggle). You can see it in the code I included. The issue was that with iPadOS 18 VoiceOver was always saying that my toggle was off when iPadOS 17 was not doing that. I filed FB15045849 about the documentation as requested.
Sep ’24
Comment on Trouble using more than one color with SF Symbols in tinted mode
Thanks for responding! That doesn't work for me in tinted mode. This results in an all white symbol. Image(systemName: "sun.horizon.fill") .symbolRenderingMode(.multicolor) This results in an all tinted symbol. Image(systemName: "sun.horizon.fill") .symbolRenderingMode(.multicolor) .widgetAccentable() This also results in an all tinted symbol. Image(systemName: "sun.horizon.fill") .symbolRenderingMode(.multicolor) .widgetAccentable() .foregroundStyle(.white, .tint)
Sep ’24