TODOs in Xcode: How to make them stand out?

前端 未结 2 1725
名媛妹妹
名媛妹妹 2021-02-19 05:40

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

2条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-19 05:51

    UPDATE

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

    ORIGINAL ANSWER (< Xcode 4.4)

    xcode 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

提交回复
热议问题