Disable autofocus on TextField in SwiftUI after App launch
Advertisements macOS 12 sets the TextField as first responder on launch for a few seconds before this changes. Tried calling the methods below onAppear, didFinishLaunching, willFinishLaunching, init() of the main app NSApp.keyWindow?.makeFirstResponder(nil) NSApp.keyWindow?.resignFirstResponder() There is a brief delay of a few seconds before the app automatically removes focus. How to prevent this behaviour ? I… Read More Disable autofocus on TextField in SwiftUI after App launch