Command-click no longer jumps to definition by default since Xcode 9 is introduced. It opens up a handy menu instead with a lot of options for quick editing, like:
- See all callers
- Edit all in scope and renaming
- Extracting methods
The old command-click behaviour can be restored in the settings or simply mimicked by using
control
+command
+click
The best mobile app monitoring product just keeps getting betterSentry automatically captures crashes recorded on macOS, iOS, and tvOS to make sure you're shipping the best experience to your users. Oh... and also Emerge Tools is now a part of Sentry, so things are getting even better. Use coupon code SWIFTLEE2025 for Sentry’s Business Plan and get started now with 2 free months.
Navigating through callers

This option allows us to see all callers for a method or parameter. This can be handy to find out if a method or property is used and which dependencies it has.

FREE 5-Day Email Course: The Swift Concurrency Playbook
A FREE 5-day email course revealing the 5 biggest mistakes iOS developers make with with async/await that lead to App Store rejections And migration projects taking months instead of days (even if you've been writing Swift for years)
Edit all in scope and renaming

Quickly rename a method or parameter together with all its definitions within the same file. Refactoring the definition throughout the whole project can be achieved with the Refactor->Rename
option in the right-click menu.
Extracting methods

Extracting methods is a great way of refactoring code. By command-clicking a bundle of code, we enable this refactoring method which extracts the piece of code into a new separated method.
A more detailed look into refactoring in Xcode can be read at the official Swift blog: Swift Local Refactoring.
Restoring the old behaviour
The new behaviour is for some of us just something they can’t get used to. You can restore this old behaviour by going to the navigation settings page in Xcode.

If we like to use the menu in some cases we can simply use the key combination of control
+ command
+ click
to directly jump to the definition.