How to bookmark code in XCode 4?

后端 未结 8 1498
独厮守ぢ
独厮守ぢ 2021-01-31 13:48

I couldn\'t find a way to put a bookmark inside the code in XCode 4. I know about the #pragma mark thing but it\'s not what I\'m looking for. What I need is somethi

相关标签:
8条回答
  • 2021-01-31 14:37

    My method:

    type in grammar error code in the previous line.....

    After changing something in other place, I can go back to the previous place because the grammer error line will show a red line in the right side scroll bar. It indicate the place.

    It is not elegant but unless there is a bookmark feature, this is the way i am using at the moment

    0 讨论(0)
  • 2021-01-31 14:38

    In Xcode 4.4, if you leave a comment with this format:

    // TODO: Your text here
    

    it will be added as a listing in the jump bar alongside the list of methods in your current file, and then you can jump straight to that comment from that menu.

    0 讨论(0)
提交回复
热议问题