Adding TODOs, FIXMEs, and more to the jump bar in Xcode

Adding TODOs, FIXMEs, and more to the jump bar in Xcode

CATEGORIES :: iOSObjective-CTutorialXcode

 

Here are a few examples of how to customize the the jump bar functions menu within Xcode. Very similar to the way a #pragma mark will.

Not familiar with the #pragma mark directive? Click the link below to learn more about them.

Learn more about #pragma marks

 

OK, adding a FIXMETODOMARK??? or !!! comment to your code can be simple. Below are some examples showing you how.

 

!!

The examples below need to be outside of function brackets in order to show up in the jump bar function menu.

 

 

FIXME

 
// FIXME: your text here...
 

TODO

 
// TODO: your text here...
 

MARK

 
// MARK: your text here...
 

???

 
// ???: your text here...
 

!!!

 
// !!!: your text here...

 

posted on 2013-01-17 18:17  kiao295338444  阅读(184)  评论(0编辑  收藏  举报

导航