How can I mark “To Do” comments in Xcode?

前端 未结 10 1184
别跟我提以往
别跟我提以往 2020-12-04 05:39

Currently I\'m working on an iOS based Image Manipulation task.

Problem:

I\'m working on different modules. So If I need to add something in a module in fu

10条回答
  •  感情败类
    2020-12-04 06:17

    I tend to write exactly:

    //TODO: Blah blah blah
    

    Then I just do a COMMAND-SHIFT-F and look for "//TODO".

    Using the file outline drop down will only show you TODOs for the current file, but I tend to want to see my project's TODO status.

    Rough solution, but it does it's job.

提交回复
热议问题