7

Ever since I downloaded Xcode 13 I have been unable to see the quick help window (option click) for objects/functions/variables I have created.

I can see the quick help window for other swift frameworks (option clicking tableView works, for example). Just not for my own.

I have tried

  • running this in command line:
$ defaults delete com.apple.dt.Xcode WebKitJavaScriptEnabled
  • deleting this:
~/Library/Caches/com.apple.dt.Xcode
  • running this:
$ defaults delete com.apple.dt.Xcode IDEIndexDisable

This is what I see when I run:

$ cd ~/Library/Developer/Xcode/DocumentationCache/
$ ls -al
total 0
drwxr-xr-x   4 myname  staff  128 Sep 21 13:13 .
drwxr-xr-x  13 myname  staff  416 Sep 24 20:38 ..
drwxr-xr-x   3 myname  staff   96 Apr 28 10:49 v187
drwxr-xr-x   3 myname  staff   96 Sep 21 13:13 v202

Anyone know of any fixes?

stevekohls
  • 2,214
  • 23
  • 29
Ungrace
  • 214
  • 2
  • 12

1 Answers1

4

A restart of the machine solved the issue for me. Xcode then installed components and built the quick help for Apple's documentation and the documentation in my own code.

skymook
  • 3,401
  • 35
  • 39
  • 2
    Well, I tried this several times before reading your comment. I tried again after reading your comment, and it worked. Thank you, magic stack overflow user – Ungrace Sep 27 '21 at 20:38
  • 1
    worked for me too.... weird – Eric Dec 03 '21 at 05:03