Reputation: 2281
I use several third-party libraries in my iOS project that generate some warnings. Is there a way I can turn off warnings on those specific files only, similar to the way you can turn off ARC on a per-file basis by adding the "-fno-objc-arc" flag to the "compile sources" area in build phases?
Upvotes: 4
Views: 685
Reputation: 6865
In Xcode, there's an option to set per-file compiler flags:
Upvotes: 2