How can I display documentation in Xcode through CodeSense?

I am a Java developer and would like to know how can I get the equivalent JavaDoc in Xcode when CodeSense autocomplete? If I pressed the ESC button, I can get a list of methods, etc., but it does not show me a description of what the methods do.

+3
source share
2 answers

This is not exactly the same, but the close equivalent of Quick Help, available from the help menu. This is a floating palette that dynamically shows quick documentation for a method or class at the cursor position.

+1
source

xcode mac. alt + , . , alt + .

+12

Source: https://habr.com/ru/post/1730468/


All Articles