Home > other >  How to disable sticky headers in Xcode14
How to disable sticky headers in Xcode14

Time:09-14

In the Xcode 14 version there are these sticky headers that show where we are in the current flow of code, they cover up to 3 lines, my problem is my entire top of editor is now covered with 3 lines of Xcode menu and other 3 lines of these sticky headers, is there a way to try and turn them off in Xcode 14, they seem to cover almost 20% of screen area on my 13 inch device also they seem to hide the relevant code I am currently typing .. thanks

enter image description here

CodePudding user response:

Source Editor New Features Xcode now pins elements of your code structure to the top of the editor as you scroll through a document. To toggle this behavior, use “Show: Code structure while scrolling” in Xcode’s Text Editing preferences. (10582250)

enter image description here

  • Related