Todo Tags In Xcode
Mar 3, 2019
In Swift, you can generate todo comments, like below:
1 | // TODO: a future todo |
After that, you will be able to see them in the class structure list. However that is not very obvious and will be easily ignored.
Highlight Todos
Here is a script we can put in the Run Script section.
1 | TAGS="TODO:|FIXME:" |
After that all the todos and fixme tag will generate a warning.
