Work with a set of files in Xcode

64 Views Asked by At

Is there a way to make developers live easier to jump between different codes in XCode ?

How I work today, which is in my opinion not efficient:

  • I have a project with about 2 Screens of files in the explorer to the left.

  • I am working on part1 and I am jumping to other part of code by clicking on objects (xcode links to another file).

  • To get to the previous Codepart I can select the back-icon in the browserstyle toolbar or I can select the file in the explorer.

  • To search a specific part of code, I have to remember the name of function or object and search it with the search function.

What I am missing:

  • A way to bookmark codelines, so I can access different code parts from one central view.

  • A way to have a set of Files open, to switch between instead of selecting files in the explorer or using the searchfunction. In Eclipse you will have tabs, so there will be direct access to a set of files. In Xcode you can double click a file in explorer and it will open a new window, which is in my opinion not really usable when you have only one screen.

Does any experienced developer have a way to make my work easier ?

UPDATE Where are the tabs, which was mentoined in Martins comment ?

enter image description here

1

There are 1 best solutions below

0
On BEST ANSWER

For Tabs: CMD+T

There is no way to bookmark, but you can try to enable line numbers. It is useful.

To enable line numbers: Preferences(CMD+,)-> Text Editing -> Show Line Nunbers.

You can use CMD+L to jump to any line number.