Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode Quick Help displays "No Quick Help" when viewing a single file

The quick help feature is working just fine when I open an Xcode project, however when opening a file (e.g. abc.swift) that's not in an open project, the documentation does not appear.

Here is an example:

like image 857
iShaalan Avatar asked May 17 '16 18:05

iShaalan


3 Answers

Install the version of the Command Line Tools for your Xcode

`Xcode menu -> Open developer tools -> More Developer Tools

Restart Xcode. It helped me to see Quick Help again and also fixed git crash.

like image 144
Vadim Motorine Avatar answered Nov 17 '22 05:11

Vadim Motorine


The below code worked for me. Run the following command from Terminal, then relaunch Xcode.

defaults delete com.apple.dt.Xcode IDEIndexDisable
like image 34
abhimuralidharan Avatar answered Nov 17 '22 04:11

abhimuralidharan


As an occasional user of XCode, what I still needed to do was download the documentation, which was not installed with the XCode install and/or did not carry over from a previous version of XCode.

From the Preferences dialog, click the Components tab, click on Documentation, and then click the download button for Guides and Sample Code.

Probably obvious for regular users of XCode, but I thought I would write it out for anyone else having this problem, since this was at the top of the Google search.

like image 1
nachbar Avatar answered Nov 17 '22 05:11

nachbar