Unable to set compiler flags in Xcode 4.3.3

I am trying to set compiler flags to disable the arc for some files, and I do not get a dialog box when I double click or click on one of the files. This happens in the new project and in the old ones, where I already set the compiler flags before. Everything he does just turns gray after I press the enter button and loses focus. Does anyone else have a problem or can I do something wrong.

Thank!

+5
source share
4 answers

I get it. I think this is because I am using a Macbook Pro with a retina with a resolution set to more text. When I turned on the editor assistant in Xcode and hit enter to change the compiler flag, the dialog box came out on the other side of the upper right corner is almost invisible. We hope that the next version of Xcode will support retina display.

+15
source

I still could not see the dialog box, but I did it blindly.

Copied "-fno-objc-arc" and then in Xcode, Enter → CMD + V → Enter ... the magic was done. :)

Thanks everyone!

+3
source

, - , XCode 5, , .

- . xcshareddata/xcuserdata/ project.xcworkspace/ .

:

cd <project_name>.xcodeproj
rm -rf xcshareddata/ xcuserdata/ project.xcworkspace/

Then restart Xcode and the problem should go away.

+1
source

In addition, if you are working on macbook pro without an enter key (the return key will not open a window with the compiler flag) and is desperate to mark several files at once ... you just need to press shift + fn + return . Just fn + return doesn't work - at least for me.

0
source

All Articles