This morning, Xcode 9.0 (9A235) shows a new/strange Auto Complete box that is not at all what it used to be. How do I get the full auto-complete box so that autocomplete looks like how it usually does?
相关问题
- Google places autocomplete suggestion without coun
- Xcode debugger displays incorrect values for varia
- Image loads in simulator but not device?
- importing files from other directories in xcode
- XCode Server: Opening import file for module '
相关文章
- Set the z-index value of a jQuery autocomplete inp
- xcode 4 garbage collection removed?
- Xcode: Is there a way to change line spacing (UI L
- Unable to process app at this time due to a genera
- Popover segue to static cell UITableView causes co
- “Storyboard.storyboard” could not be opened
- didBeginContact:(SKPhysicsContact *)contact not in
-
The file “
.app” couldn’t be opened becaus
Here's a bit of workaround but works.
Clean the project... Command + Shift + K
Clean the build folder... Command + Shift + Options(Alt) + K
Delete derived data for the project... This can be done with the help of this link:
How can I delete derived data in Xcode 9?
Close XCode.
Once it will be done with building, The suggestions will be back. I have tried it twice.
In my case (Xcode 11.1), It happened when I stopped Xcode auto-indexing with this command
defaults write com.apple.dt.Xcode IDEIndexDisable -bool true
.So I rolle back it with
defaults write com.apple.dt.Xcode IDEIndexDisable -bool false
. then restart macOS and run again Xcode.This Link helped me. Open the Build Settings & fill the framework search paths. See the below image.
Xcode Version 11.0 (11A420a)
I have tried the solution from Lal Krishna for Xcode V11.0. It worked a few times but later I got no result.
I found one solution. You must delete two files:
That solution helps me now. May be useful for others
It seems to be file specific in my case (Xcode 9.2) For me the fix was:
Finally after 3 hours of trying everything - autocomplete works as it should.
Had the same problem with Xcode 11.3. Nothing above didn't help, it turned out that I had build errors. Just fix the build errors and autocompletion will work again.