I have some deprecated constants in my project. They need to stay. I don't want to be warned about them, but do want to be warned if other deprecated constants should turn up in my project later.
Apple's header declares them as follows:
extern NSString * const NameOfStringConstant __OSX_AVAILABLE_BUT_DEPRECATED(version availability info here)
How can I silence the warning?
Related answer for silencing the warning for a deprecated method here
Related answer for silencing the warning about a deprecated string conversion here