Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the must know shortcuts in Xcode for faster application development?

What are the must know shortcuts in Xcode for faster application development?

As a special interest, the Mac shortcut I want to know is the one to open application menus (File, Edit, View, Project, Build etc.,). In Windows, if we type Alt + F, the File menu will drop down, and we can navigate through the sub-menus using the arrow keys or typing the letters that are underlined in the menus. How can we do something like that in Mac?

Thanks..

like image 654
EmptyStack Avatar asked Dec 17 '22 18:12

EmptyStack


1 Answers

For debugging:

  1. CMD+SHIFT+I (step into)
  2. CMD+SHIFT+O (step)

Building & Running:

  1. CMD+B (build project)
  2. OPT+CMD+ENTER (debug project)
like image 73
Pablo Santa Cruz Avatar answered May 11 '23 10:05

Pablo Santa Cruz