You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I have an iTextField that's first responder it creates attribute warnings. I added a Symbolic breakpoint with symbol print_cycle. It seems that Xcode doesn't like changing first responder they way its done below.
@solkpolk For your information!
I forked the repository and fixed this part of the code for myself. Just wrapped the whole structure above in DispatchQueue.main.async.
DispatchQueue.main.async {
if isEditing.wrappedValue {
textField.becomeFirstResponder() // <- Causes the warning
} else {
textField.resignFirstResponder()
}
}
When I have an iTextField that's first responder it creates attribute warnings. I added a Symbolic breakpoint with symbol
print_cycle
. It seems that Xcode doesn't like changing first responder they way its done below.The text was updated successfully, but these errors were encountered: