Loading...

How to detect fn key press in Swift?

question macOS swift
Ram Patra Published on November 10, 2021
Swift 5.0+

You can override the flagsChanged() method of NSViewController and have your code like below to detect fn key press and release in macOS:

override func flagsChanged(with event: NSEvent) {
	if event.modifierFlags.intersection(.deviceIndependentFlagsMask).contains(.function) {
		print("fn key pressed")
	}
        
	if event.modifierFlags.intersection(.deviceIndependentFlagsMask) == [] {
		print("fn key released")
	}
}

P.S. The above solution was derived from this answer on SOF. This solution would also work for any of the modifier keys like Cmd, Shift, Opt, etc. However, note that this would be triggered even if a user has the fn key pressed all the time but presses/releases any other modifier keys. The above code doesn’t exactly detect fn key presses but rather whether the fn key is present in the list of modifier keys being pressed/released.

Take your presentation to the next level.

Put your face and name on your screen.

Your to-dos on your menu bar.

Fill forms using your right-click menu.

Ram Patra Published on November 10, 2021
Image placeholder

Keep reading

If this article was helpful, others might be too

question macOS swift March 14, 2021 How to ignore mouse events in a view or window in macOS?

You can ignore mouse events in a window/view by adding just a single line of code.

question macOS swift August 14, 2020 How to quit or close an app in macOS using Swift?

You can quit or exit an app with:NSApp.terminate(self)

question swiftui swift February 19, 2025 How to change the window level to floating, popUpMenu, etc. in SwiftUI?

When developing macOS applications with SwiftUI, you might need to create floating windows that stay on top of other windows. While modern macOS versions (15+) make this straightforward with the .windowLevel(.floating) modifier, supporting older versions requires a different approach. In this post, I’ll show you how to create floating windows that work across different macOS versions.

Like my work?

Please, feel free to reach out. I would be more than happy to chat.