0% found this document useful (0 votes)
8 views1 page

XcodeShortcuts Light

The document lists various Xcode shortcuts for efficient coding, including commands for editing, navigation, and window management. Each shortcut is accompanied by a brief description of its function. The document serves as a quick reference guide for developers to enhance their productivity in Xcode.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

XcodeShortcuts Light

The document lists various Xcode shortcuts for efficient coding, including commands for editing, navigation, and window management. Each shortcut is accompanied by a brief description of its function. The document serves as a quick reference guide for developers to enhance their productivity in Xcode.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Xcode Shortcuts seanallen_dev

Edit in Scope Jump to method definition


// Edits multiple instances in scope // Does what it says

cmd + ctrl + e ⌘⌃e cmd + option + click ⌘ ⌥ click

Opening a file in assistant editor Persisting Library


// Opens the clicked file in assistant editor // Library stays open

option + click ⌥ click cmd + option + shift + l ⌘⌥⇧l

Re-indent the whole function Open Media Library


// Re-indents the highlighted function // Opens a media library for faster import

ctrl + i ⌃i cmd + shift + m ⌘⇧m

Auto-documentation Left pane tabs switch


// Provides a documentation template // Cycles through left pane tabs

cmd + option + / ⌘ ⌥/ cmd + 1-9 ⌘ 1-9

Quick method/file search Right pane tabs switch


// Finds a method of a file // Cycles through right pane tabs

cmd + shift + o ⌘ ⇧o cmd + option + 1-6 ⌘ ⌥ 1-6

Window management Multi line editing


// Opens/hides left and right pane // Places a cursor in multiple places

cmd (+option) + 0 ⌘ (+⌥) 0 ctrl + shift + click ⌃ ⇧ click

Jumps to code line Vertical selection


// Jumpts to a specific code line // Drag to select multiple lines but verticaly

cmd + l ⌘l option + drag ⌥ drag

Center cursor Toggle breakpoints


// Centers a cursor in the middle // Toggles breakpoints on and off

ctrl + l ⌃l cmd + y ⌘y

Create Tabs #warning("description")


// ⌘ ⇧ [ or ] to navigate between tabs // Adds a warning to your code. Best used as a reminder.

cmd + t ⌘t #error("description")
// Adds an error to your code.

Assembled by: emin_roblack

You might also like