2

I found it to be very useful that Xcode would show compiler warnings as I wrote code. For instance: if I wrote "ldksjfksdj" I'd expect to immediately see a red exclamation mark icon and the warning, use of undeclared identifier. But now with Xcode 4.5 I only see that warning after I compile the project. And then, after I've compiled it, see the error, and delete "ldksjfksdj", the warning doesn't disappear immediately the way it used to. It will only disappear after I compile it again. This is profoundly annoying and not helpful. Does anyone have a solution?

Orpheus Mercury
  • 1,617
  • 2
  • 15
  • 30

1 Answers1

3

Under File > Project Settings in the Build tab, there is an option for 'Show live issues for source code'. There are also options for 'Show issues for active scheme only' and 'Show all issues'. 'Show live issues for source code' should be set to enabled. These are the live issues settings at the project level.

Hope that solves your problem.

Daniel Zhang
  • 5,778
  • 2
  • 23
  • 28