Question

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

Backticks just read as backticks in Xcode Quick Help panel.

enter image description here

I'd really love to have NSStringFromClass codified somehow.

Était-ce utile?

La solution

Use @p before a word to place it in monospaced font.

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

Code preview

Here's a pretty solid overview of available features.

Autres conseils

Start the code block with a tab character.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top