How to suppress the deprecation warning "dispatch_get_current_queue() is deprecated...in iOS 6.0"? How to suppress the deprecation warning "dispatch_get_current_queue() is deprecated...in iOS 6.0"? objective-c objective-c

How to suppress the deprecation warning "dispatch_get_current_queue() is deprecated...in iOS 6.0"?


You could use the following code to suppress the warnings.

#pragma clang diagnostic push#pragma clang diagnostic ignored "-Wdeprecated-declarations"dispatch_get_current_queue() // your deprecated calling code#pragma clang diagnostic pop