7 Xcode shortcuts for a large iOS project

⋅ 6 min read ⋅ Xcode Development Shortcut

Table of Contents

As your project grows, so does your codebase. You will have hundreds of files to work with before you know it.

In this article, I will share seven Xcode shortcuts that will help you on a large iOS project. The tricks you are about to learn will help you find and navigate to a file/class/symbol in your large and small project.

A project with thousands of files.
A project with thousands of files.

Xcode shortcuts for large iOS project

You can easily support sarunw.com by checking out this sponsor.

Sponsor sarunw.com and reach thousands of iOS developers.

Open Quickly: ⇧ + ⌘ + O (Shift + Command + O)

I put this command up here because it is the one I can't live without.

Open Quickly lets you jump to any class, enum, struct, function, or other entities[1:1] in your project using a fuzzy search query.

How to use Open Quickly

To use Open Quickly, we use this shortcut.

⇧ - shift + ⌘ - command + O or
File menu > Open Quickly...

After using Open Quickly, you will see a search field popping up.

  1. Type in the name of an entity that you want to open. It will perform a fuzzy search[2], so you can skip some words out.
  2. You will see a list of symbols that match the search term.
  3. You can use an up/down arrow key to highlight the one you want.
  4. Then hit a return key to open the file containing that symbol.
  • Press ⏎ Return key to open the file in the Main Editor (the one on the left).
  • Press ⌥ - option + ⏎ Return key to open the file in the Secondary Editor.

Here is an example of opening up the SceneDelegate class with Open Quickly.

Search for a class name
Search for a class name

Here is another example of jumping to the _keyCommands variable in the KeyboardManager file. We open the file in the Secondary Editor using ⌥ + ⏎ (Option + Return).

Search for a variable name
Search for a variable name

Reveal in Project Navigator: ⇧ + ⌘ + J (Shift + Command + J)

This is an Open Quickly command's companion.

I usually group related files under the same folder. For example, I might group model, view model, and view controller under a User folder.

After you jump to a file, you probably need to open other files in that group. Reveal in Project Navigator command will scroll to the file you are working on in the Product Navigator and expand the folders in which the file is located.

Related files grouped under the same folder.
Related files grouped under the same folder.

How to use Reveal in Project Navigator

To use Reveal in Project Navigator, we use this shortcut.

⇧ - shift + ⌘ - command + J or
Navigate menu > Reveal in Project Navigator

Here is an example where we reveal MasterFeedViewController in Project Navigator.

Reveal in Project Navigator
Reveal in Project Navigator

Filter file in Project Navigator

This one isn't a shortcut but a nice trick to learn nonetheless. You can filter files in Project Navigator to show only the ones you are interested in.

Filter files that contain
Filter files that contain "MasterFeed".

How to Filter file in Project Navigator

To filter files in Project Navigator, you type your search term in the search bar at the bottom of the Project Navigator.

Then you can work on a subset of interested files.

Filter file in Project Navigator.
Filter file in Project Navigator.

Going Back and Forward: ⌃ + ⌘ + ← and ⌃ + ⌘ + → (Control + Command + ← and Control + Command + →)

Every time you open a file in the editor, the previous file is remembered in the Xcode navigation stack. You can going back and forth between these history with ⌃ + ⌘ + ← and ⌃ + ⌘ + → (Control + Command + ← and Control + Command + →).

How to Go Back

To go back to you previous opened file, we use this shortcut.

⌃ - control + ⌘ - command + or
Navigate menu > Go Back

Go Back.
Go Back.

How to Go Forward

To go forward on your navigation stack, we use this shortcut.

⌃ - control + ⌘ - command + or
Navigate menu > Go Forward

Go Forward.
Go Forward.

Jump to Line: ⌘ + L (Command + L)

This command will jump to a specific line in the current file.

This is useful when you want to know what happens exactly at that line. You probably need this when debugging.

How to use Jump to Line

To use Jump to Line, we use this shortcut.

⌘ - command + L or
Navigate menu > Jump to Line

After you trigger Jump to Line, you will see a search field popup.

  1. Type in a line number that you want to jump to.
  2. Hit return.
Jump to Line.
Jump to Line.

Show Document Items: ⌃ + 6 (Control + 6)

As your project grows, you might have a hundred lines of codes and many more related entities, e.g., variables, function, extension, in the same file.

Scrolling through all of that is a pain if you don't know this command, Show Document Items. Show Document Items will show a drop-down menu with all the symbols in the current file.

Show Document Items.
Show Document Items.

How to use Show Document Items

To use Show Document Items, we use this shortcut.

⌃ - control + 6 or
View menu > Editor > Show Document Items

Or you can click on the last part of the jump bar.

Click on the last part of the jump bar to Show Document Items.
Click on the last part of the jump bar to Show Document Items.

After using Show Document Items, you will see a drop-down menu with all the symbols in the current file. You can select a symbol you want by either one of these three methods.

  1. Use the up/down arrow to move selected symbols and press return to select.
  2. Scroll and click.
  3. You can filter the list down by starting typing your search term.

Minimap

Minimap was first introduced in Xcode 11. The minimap shows an outline overview of your code that you can scroll through.

You can use the minimap to discover symbols within a file and jump right to it.

Minimap.
Minimap.

How toggle minimap on/off

To use Show/Hide minimap, we use this shortcut.

⌃ - control + ⇧ - shift + ⌘ - command + M or
Editor menu > Minimap

  1. When hovering over the minimap, it will display the name of the symbol at the mouse cursor position.
  2. Press ⌘ (command) while hovering to see a list of all symbols.
Press ⌘ while hovering to see a list of all symbols.
Press ⌘ while hovering to see a list of all symbols..

You can easily support sarunw.com by checking out this sponsor.

Sponsor sarunw.com and reach thousands of iOS developers.

Conclusion

Even the title said Xcode shortcuts for a large project. You can benefit from it for both big and small projects.

You might find the following articles useful if you love these tips and tricks.


  1. The various aspects of your code that you can search with Open Quickly (properties, types, functions, interface, and so on) are referred to as "entities" for brevity. ↩︎ ↩︎

  2. Fuzzy search finding strings that match a pattern approximately (rather than exactly) https://en.wikipedia.org/wiki/Approximate_string_matching ↩︎


Read more article about Xcode, Development, Shortcut, or see all available topic

Enjoy the read?

If you enjoy this article, you can subscribe to the weekly newsletter.
Every Friday, you'll get a quick recap of all articles and tips posted on this site. No strings attached. Unsubscribe anytime.

Feel free to follow me on Twitter and ask your questions related to this post. Thanks for reading and see you next time.

If you enjoy my writing, please check out my Patreon https://www.patreon.com/sarunw and become my supporter. Sharing the article is also greatly appreciated.

Become a patron Buy me a coffee Tweet Share
Previous
How to add section header and footer to SwiftUI list

We can group related data in a SwiftUI list using Section view. We can also optionally add a header and footer to describe a particular section. Let's learn how to do that.

Next
Dart Parameters

Learn three ways to declare parameters for a Dart function.

← Home