I am using a 3rd party library in my ios application. I have a compiled file i.e., ".a"
file and the header files ".h"
given to me..
The solution here In Xcode, how to suppress all warnings in specific source files? talks about clicking the Compiler Flags of the source files and setting -w
. This doesn't have anything to do with alerts I believe.
Also, I don't have source files with me..
So my question is, how do I remove/hide/disable UIAlertView or UIAlertController from a 3rd party library?
Is there a way to do set some value in info.plist
or AppDelegate.m
or anywhere in Xcode
?