TODOs in Xcode: How to make them stand out?

Tustin2121 picture Tustin2121 · Feb 27, 2012 · Viewed 11.6k times · Source

I am aware of the method of making them warnings, but I want to keep my legit warnings separate from my todos. I'm also have yet to see xcode 4 highlight the todos like everyone seems to think it does. And xcode's todo support only works on todos outside of functions...

The build phase script that is outlined here is wonderful, but it makes the TODOs into warnings, and Objective C creates enough legitimate warnings that I don't want my todo's clogging up the list. Is there a way to make the todo's a different build result, like an info result or something? Something that will not make Xcode's real warnings (half of should be errors) vanish in the crowd?

Answer

Richard Stelling picture Richard Stelling · Feb 27, 2012

UPDATE

As of Xcode 4.4; FIXME:, ???:, ????:, !!!: all work outside of a function/method.

ORIGINAL ANSWER (< Xcode 4.4)

will highlight a TODO but only outside of a function.

//TODO: This will show in function drop down 
-(void)method1
{
    //TODO: This will not show
}

In addition; FIXME, ???, ????, !!!! do the same.

TODO