/ Published in: Objective C
Wrap the code into this snippet to disable undeclared selector warning
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#pragma clang diagnostic push #pragma clang diagnostic ignored "-Wundeclared-selector" //... your code here ... #pragma clang diagnostic pop
URL: http://stackoverflow.com/a/10508084