Xcode what's the difference between "Other Linker Flags" vs "Other_LDFLAGS"

ios, ios6, xcode

Solution

These are the same thing. One is a synonym for the other. If you click on the Quick Help in the inspector in Xcode 4.5 when you have "Other Linker Flags" selected, it will tell you that it sets the "OTHER_LDFLAGS" setting. "Other Linker Flags" is the human-readable version, and `OTHER_LDFLAGS` is the actual variable name that the linker uses.

Problem

I have an app that crashes on build. I'm told to set the "Other Linker Flags" to -ObjC. Fine.. but in Xcode's Build settings, I don't see "Other Linker Flags", I see "Other_LDFLAGS". So, what is the difference, and how do I change from one to the other if necessary? A picture is worth.... so.. what I'm told I need: and what I have:

Original source