Hi!
I noticed that when I use the simple Textfield in SwiftUI it generates unexpected error:
-[RTIInputSystemClient remoteTextInputSessionWithID:performInputOperation:] perform input operation requires a valid sessionID
Error: this application, or a library it uses, has passed an invalid numeric value (NaN, or not-a-number) to CoreGraphics API and this value is being ignored. Please fix this problem.
If you want to see the backtrace, please set CG_NUMERICS_SHOW_BACKTRACE environmental variable.
Here is the code example to repoduce the error:
import SwiftUI
struct ContentView: View {
@State private var firstName = ""
var body: some View {
TextField("First name", text: $firstName)
}
}
How it could be fixed ? Is it one of the bugs that came along with iOS 17 ?
Thank you!