I have built an iOS SDK that is available on cocoapods, and as a manual download for people that don't want to use cocoapods. When you install the SDK via cocoapods, it automatically adds the "-ObjC" value into build settings Other Linker Flags.
I am fairly confident that there is no way to write to the build settings programmatically (although please correct me if I'm wrong because that would be great). However, I am wondering if there is a way to read build settings programmatically.
I would like to read from build settings within my SDK, then if the user has not added "-ObjC" in other linker flags, present an error message telling them to do so.
I have already specified the need for adding "-ObjC" to Other Linker Flags in my SDK documentation, but I have had a few users that have missed this section, so I'm looking to notify them of their error in Xcode.