Post

Replies

Boosts

Views

Activity

Comment on Error when clicking on TextField : CLIENT ERROR: TUINSRemoteViewController does not override -viewServiceDidTerminateWithError: and thus cannot react to catastrophic errors beyond logging them
import SwiftUI struct ContentView: View { @State private var searchText: String = "" var body: some View { NavigationView { Text("Content goes here") .frame(maxWidth: .infinity, maxHeight: .infinity) } .toolbar { ToolbarItem(placement: .automatic) { TextField("Search...", text: $searchText) .textFieldStyle(RoundedBorderTextFieldStyle()) .frame(width: 200) } } } }
Aug ’24
Comment on Error when clicking on TextField : CLIENT ERROR: TUINSRemoteViewController does not override -viewServiceDidTerminateWithError: and thus cannot react to catastrophic errors beyond logging them
Simplest TEST CASE I could make @DTS Engineer @KMacTexas …Create a new Swift macOS project, go to ContentView.swift file and copy-paste this code below into it… then run it, click the SEARCH FIELD and PRESS TAB to see TUINSRemoteViewController error… Note Quick Look Xcode says: "0xad0bc : +[NSSemiAutonomousRendezvousWindowController addBridgeKeys:]" Xcode Version** 16.0 beta 5 (16A5221g)** macOS Sonoma 14.6.1 (23G93)
Aug ’24
Comment on Error when clicking on TextField : CLIENT ERROR: TUINSRemoteViewController does not override -viewServiceDidTerminateWithError: and thus cannot react to catastrophic errors beyond logging them
For the record, "0xad0bc : +[NSSemiAutonomousRendezvousWindowController addBridgeKeys:]" is the "fault" shown with the Quick Look icon at the bottom in Xcode, in my case, which is triggered by a custom NSTextField in the Toolbar. Every time the focus goes in or out of there, that triggers "CLIENT ERROR: TUINSRemoteViewController does not override -viewServiceDidTerminateWithError: and thus cannot react to catastrophic errors beyond logging them". Can't get rid of it yet. @DTS Engineer
Aug ’24
Comment on Xcode 13.1: What happened to shortcuts on international keyboards?
Thank-You "bigmouthstks". On a Swedish keyboard, command-shift-7 to comment out code disappeared in Xcode 14.0.1 with no warning, but your comment above about unchecking that brought it back… I would have NEVER found this on my own. Apple, please NEVER EVER EVER mess with our key bindings in Xcode again. Seriously. You gonna change that, you better ASK us IF WE ALLOW THAT. After 20 years using Xcode, no-way-this-is-OK. Thank-goodness folks come up with answers who-knows-how.
Oct ’22