Binding Issue
#3446
Replies: 2 comments
-
So after playing around with the CaseStudies app and the |
Beta Was this translation helpful? Give feedback.
0 replies
-
Here's the code that works now based off of the
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm encountering the "A binding action sent from a store was not handled" log message, but I'm stumped on where the problem is in my code. I have a demo app at https://github.com/bradhowes/tca-bindings-issue -- below is basically from the README there.
When run, the demo app shows a list of tags. Long-pressinig on a tag
brings up the tags editor. Tags may be moved around, added, and removed with no issue. The problem appears when
attempting to edit the "User Tag" name (the other tags are read-only and cannot be changed).
Clicking on "User Tag" text brings up the keyboard and allows editing
The Xcode console shows a warning:
Typing letters will repeat this message
Setting a breakpoint in
BindableActionDebugger
, I can print out the key path of the action:The code for the
TagNamesEditor
appears to be set up properly to register and process SwiftUI bindings to attributesin the
TagNameEditor.State
but I am not sure where the solution would be. Any ideas?Beta Was this translation helpful? Give feedback.
All reactions