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
This can also happen if you redundantly named your files. For example,
Data.swift
Data.swift
For me it was happening in my test file, because it wasn't part of a target for some reason. Setting it's target membership solved the issue.
Problems mostly because there are missing location of some files in project navigator (build errors)
Project Navigator
paneOr you can:
Hope this helps
I would like to add one more to the pile of solutions, because it is the only one that worked for me and is nowhere to be found here.
Xcode normally comes with two default build configuration for every project.
Release
&Debug
. I have an extra one for my unit tests calledTesting
. In Xcode 10.1, 10.2, 10.3 and 11 beta, the new build system does not seem to like it and will only auto-complete if you either useRelease
orDebug
. Any custom build configuration breaks auto-completion in mixed (swift + objc) project with unit tests.Xcode 11.3, macOS catalina
process parsecd achieve 100% of cpu, so kill it helps me
Deleting the DERIVED DATA folder seemed to fix my issue. Thanks to this post: swift println() not showing autocomplete options while writting code