I added the following comment with backtick for code:
/** Checks if the given data is of type `list`. */
+ (BOOL)isList:(id)object {
// ..
}
but the backtick prints as in the Xcode quick help:
How to get Xcode to display code formatted properly? It works fine when documenting Swift source.


@por@cthis post is a bit old, but still has a bunch of useful options: stackoverflow.com/a/19169271/7833793 alternatively if you're trying to do a larger code block using @code // @endcode/// Checks if the given data is of type @c list.works. Weird.