Xcode: How to disable compiler error messages in the source window?

The source code editor in Xcode 3.1 has a new feature in which your compiler error messages (and warnings) are embedded directly into your code under the corresponding line of text. I'm sure it sounded like a good idea, but in practice I find it very annoying - your code jumps when you try to make corrections to fix the error.

I know that you can collapse the error message by clicking the marker icon in the left field, but I would prefer that they do not appear directly in my code at all. Is there any way to disable this feature? Surfing the settings panel did not find anything.

Memo for Apple: Tool tips will be a much better solution.

+1
xcode macos
source share
2 answers

Settings → Construction → Message Bubbles → Show at Build Time: Never


Xcode 7+

Preferences → Behavior → Assembly → Success / Failure → Notification using a pillar or system notification

+1
source share

Go to your Xcode settings and uncheck the "Show live issues" checkbox on the "General" tab.

Source: Is there any way to prevent Xcode from displaying errors and prompts while entering code?

0
source share

All Articles