TODOs in Xcode: How to make them stand out?

2020-07-02 11:36发布

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?

2条回答
Evening l夕情丶
2楼-- · 2020-07-02 11:49

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

查看更多
我命由我不由天
3楼-- · 2020-07-02 11:57

One way is to use Xcode's search feature. If you mark your code with // TODO:..., you can search the entire project for // TODO and generate a nice list of tasks.

Also, note that comments starting with // TODO: or // FIXME: that are outside the scope of any method will appear in the method popup menu, just like #pragma mark lines.

查看更多
登录 后发表回答