Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode shortcut for go to next "caller" in Assistant Editor?

Tags:

xcode

xcode4.4

If you highlight a function name in the Primary Editor, then select "Callers" in the Assistant Editors, you can view where the highlighted function is called.

There are left and right arrows at the top of the Assistant Editor that allow you to jump to the previous/next place where the function is called. Is there a keyboard shortcut for these?

like image 974
codeperson Avatar asked Jul 26 '12 22:07

codeperson


People also ask

How do I navigate code in Xcode?

Going Back and Forward (⌃ + ⌘ + ← and ⌃ + ⌘ + →): This will navigate back and forth between a file in Xcode navigation stack. Jump to Line (⌘ + L): This command will jump to specific line in the current file.

How do I jump to a line in Xcode?

Jump to Line ( ⌘ + L )

What is the keyboard shortcut to move to the top of a file Xcode?

Jump to the top is a simple matter, that is just CMD + UP .


1 Answers

I think you need the shortcut are:

control+option+command+j is "Jump to Definition in Assistant Editor"

control+command+left/right is "Go back/forward"

And you can see and set all the shortcut on Xcode->Preference->Key Bindings

like image 119
DJean Avatar answered Nov 07 '22 07:11

DJean