Reputation: 16618
How can I indicate inline code blocks like this
in Appledoc comments?
Backticks just read as backticks in Xcode Quick Help panel.
I'd really love to have NSStringFromClass
codified somehow.
Upvotes: 7
Views: 706
Reputation: 7826
Use @p
before a word to place it in monospaced font.
///
/// @summary does some stuff
///
/// Alias for @p NSStringFromClass actually.
///
Here's a pretty solid overview of available features.
Upvotes: 9