Xcode 7.3 - warnings are not displayed and cannot search for a project

Since I upgraded to Xcode 7.3, I noticed that when I search in the workspace, I always get โ€œno resultsโ€, and warnings do not appear in the warning panel. Sometimes it works for several minutes and dies again. Rebooting my computer, Xcode and reinstalling did not help.

Does anyone else experience this or find a solution / workaround?

I installed 7.2.1 for comparison, and both the search and the warning work as expected.

+7
ios xcode
source share
2 answers

Close Xcode, back up your project and try to do this on a copy:

  • Find the .xcodeproj file in the search device.
  • right click and select show package contents .
  • delete everything except project.pbxproj .
  • reopen the project on xcode.

if you use cocoapods do it first.

  • open the terminal window where the .xcworkspace file is .xcworkspace .
  • enter pod deintegrate to remove all items
  • delete the .xcworkspace file.
  • make the first 3 elements of the previous list in your .xcodeproj file.
  • type pod install to reinstall your containers and create a new .xcworkspace .

open your project on xcode again.

0
source share

I had a similar problem with warnings in a quick framework. If you have any quick structure in your application, check if you have this infrastructure in the build tab of your circuit.

  • Go to Edit Scheme...
  • Click Build
  • Add goal framework for goals (if missing)
0
source share

All Articles