J. Peterson
J. Peterson

Reputation: 2033

Xcode: How to turn off the compiler error messages in the source code window?

The source code editor in XCode 3.1 has a new feature where your compiler error (and warning) messages are embedded directly in your code below the relevant line of text. I'm sure it sounded like a nice idea, but in practice I find it very annoying - your code jumps around as you try to make the edits to fix the error.

I know you can collapse the error message by clicking the marker icon in the left margin, but I'd prefer not to have them appear directly in my code at all. Is there any way to disable this feature? Surfing the preferences pane didn't turn up anything.

Memo to Apple: Tool tips would be a much better solution.

Upvotes: 2

Views: 2766

Answers (3)

Chris
Chris

Reputation: 66

Xcode 14: Menu > Xcode >Settings > General > Issues: Show Minimized

Upvotes: 2

ma11hew28
ma11hew28

Reputation: 126309

Go to Xcode preferences and uncheck "Show live issues" from the General tab.

Source: Is there some way to stop XCode from showing errors and prompts while I type the code?

Upvotes: 5

Wevah
Wevah

Reputation: 28242

Preferences -> Building -> Message Bubbles -> Show during builds: Never


Xcode 7+

Preferences -> Behaviors -> Build -> Succeeds/Fails -> Notify using bezel or system notification

Upvotes: 1

Related Questions