forked from LeCoupa/awesome-cheatsheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xcode.txt
106 lines (74 loc) Β· 3.57 KB
/
xcode.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
##############################################################################
# XCODE CHEAT SHEET
# WEBSITE: https://developer.apple.com/xcode/
# DOCUMENTATION: https://developer.apple.com/documentation/xcodekit
##############################################################################
##############################################################################
# SEARCH
##############################################################################
Cmd + F Find in File
Cmd + Option + F Find & Replace in File
Cmd + Shift + F Find in Project
Cmd + Option + Shift + F Find & Replace in Project
##############################################################################
# TABS
##############################################################################
Cmd + T New Tab
Cmd + } Previous Tab
Cmd + { Next Tab
##############################################################################
# NAVIGATION
##############################################################################
Cmd + Shift + O Quick Open
Cmd + J Focus to Editor
Cmd + Ctrl + UP Next Counterpart
Cmd + Ctrl + DOWN Previous Counterpart
Cmd + Ctrl + RIGHT Next Recent File
Cmd + Ctrl + LEFT Previous Recent File
Cmd + click Defination of Symbol
Cmd + L Go to Line
Cmd + Option + LEFT Fold Section
Cmd + Option + RIGHT Unfold Section
##############################################################################
# EDITING
##############################################################################
Cmd + Option + ENTER Show Assitant Editor
Cmd + ENTER Hide Assitant Editor
Ctrl + SPACE or ESC Toggle Completions
Cmd + ] Indent Section
Cmd + [ Outdent Section
Ctrl + i Fix Indentation
Cmd + / Comment / Uncomment
Cmd + Option + [ Move Line Up
Cmd + Option + ] Move Line Down
##############################################################################
# NAVIGATOR (LEFT PANEL)
##############################################################################
Cmd + 0 Show /Hide
Cmd + 1-8 Switch tabs
Option + click Open Assistant Editor
Shift + Option + click Decide where to Open
double click Open in New Window
##############################################################################
# DEBUGGING
##############################################################################
Cmd + Shift + Y Toggle Debug Area
Cmd + ' Next Issue
Cmd + " Previous Issue
Cmd + \ Add / Remove Breakpoint
Cmd + Y Active / Deactive Breakpoints
Cmd + K Clear Console
##############################################################################
# UTILITIES (RIGHT PANEL)
##############################################################################
Cmd + Option + 0 Show / Hide
Cmd + Option + 1-9 Go to Tab
##############################################################################
# DUBUGGING & RUN
##############################################################################
Cmd + B Build
Cmd + R Run
Cmd + . Stop
Cmd + Shift + B Analyze
Cmd + U Test
Cmd + Shift + K Clean