alitosuner
alitosuner

Reputation: 1034

Xcode doesn't show Error Message

I am writing C++ code in Xcode, but when I write the code wrong (like cout>>"xyz") , Xcode does not show me the Error message. Is there any way that I get the error message?

Upvotes: 2

Views: 1696

Answers (1)

Kilian
Kilian

Reputation: 2282

There's a "Show live issues" setting in the General tab of the Xcode settings (⌘ + comma). That should do the trick.

xcode settings screenshot

It will then look like this in Xcode:

enter image description here

Upvotes: 1

Related Questions