问题
How to collapse all methods in a class in Xcode?
Collapsing one by one is not an option anymore.
回答1:
As of Xcode 4 it seems to have changed.
command-alt-shift-left arrow will do the trick...
To fold/unfold current methods or if
structures use:
Fold: command-alt-left arrow
Unfold: command-alt-right arrow
回答2:
Updates in Xcode 10
Xcode 10 has increased support for code folding, including:
- A new code folding ribbon showing all of the multi-line foldable blocks of code in the editor
- A new style for folded code in the editor that allows you to edit lines with folded code
- Support for folding any block of code enclosed in curly braces
- Support for folding blocks of code from the folding ribbon, from structured selection, or from the
Menubar ► Editor ► Code Folding ► Fold menu item
![](https://www.eimg.top/images/2020/03/22/9dc5fa312d8a862c1dbaeee31c78398d.png)
Look at this snapshot:
![](https://i0.wp.com/i.stack.imgur.com/9GGFL.gif)
Code folding was disabled in Xcode 9 beta 1, which is working now, in Xcode 9 Beta5 according to beta release note: Resolved in Xcode 9 beta 5 – IDE
Here is how:
- Press and hold
⌘
(command) button in keyboard and move/hover mouse cursor on any (start or end) braces. It will automatically highlight, block area. - Keep (hold)
⌘
(command) button in pressed condition and click on highlighted area. It will enable quick menu popover window withFold
option. - Select
Fold
from menu list. It will fold your code and shows 3 dots, folding/covering entire block. - Now, to again unfold your code block, release
⌘
(command) button and click on 3 dots folding a block.
For easy understanding, look at this snapshot:
![](https://i0.wp.com/i.stack.imgur.com/raiei.gif)
It's all keyboard short cuts are also working.
Fold ⌥ ⌘ ← option + command + left arrow
Unfold ⌥ ⌘ → option + command + right arrow
Unfold All ⌥ U option + U
Fold Methods & Functions ⌥ ⌘ ↑ option + command + up arrow
Unfold Methods & Functions ⌥ ⌘ ↓ option + command + down arrow
Fold Comment Blocks ⌃ ⇧ ⌘ ↑ control + shift + command + up
Unfold Comment Blocks ⌃ ⇧ ⌘ ↓ control + shift + command + down
Focus Follows Selection ⌃ ⌥ ⌘ F control + option + command + F
Fold All ⌘ ⌥ ⇧ ← command + option + shift + left
Unfold All ⌘ ⌥ ⇧ → command + option + shift + left
Code folding options from Xcode Menu:
Menubar ▶ Editor ▶ Code Folding ▶ "Here is list of code folding options"
Here is ref snapshot:
![](https://www.eimg.top/images/2020/03/22/d3e0c7a1b56bd9c1440329ec757b5b5c.png)
Same options from Xcode Short-cut list:
Menubar ▶ Xcode ▶ Preferences ▶ Key Bindings ▶ "Here is list of code folding short-keys"
![](https://www.eimg.top/images/2020/03/22/f60c2d784fbb6c80ea8c3b80a3587e74.png)
回答3:
X-Code 7 onwards
To collapse all method : Shift + Option + Command + Left arrow
To expand all method : Shift + Option + Command + Right arrow
回答4:
Looks like Ctrl-Command-Up does it (or on the menu: Editor-CodeFolding-FoldMethods/Functions).
Ctrl-Command-Down or Ctrl-U to reverse.
来源:https://stackoverflow.com/questions/2834605/how-to-collapse-all-methods-in-xcode