Ungrace
Ungrace

Reputation: 294

Xcode 13 quick help window not launch on custom objects

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

$ defaults delete com.apple.dt.Xcode WebKitJavaScriptEnabled
~/Library/Caches/com.apple.dt.Xcode
$ 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?

Upvotes: 7

Views: 647

Answers (1)

skymook
skymook

Reputation: 3676

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.

Upvotes: 4

Related Questions