Appledoc embedded code in Xcode shortcut bar?

How can I specify inline code blocks like this in Appledoc comments?

Backticks just reads backlinks in the Xcode Quick Access Toolbar.

enter image description here

I would really like to code the NSStringFromClass .

+6
source share
2 answers

Use @p before the word to put it in a monospace font.

 /// /// @summary does some stuff /// /// Alias for @p NSStringFromClass actually. /// 

Code preview

Here's a pretty solid overview of the features available .

+8
source

Run the code block with a tab character.

+1
source

All Articles