There are two options I have come up with by adding flags to "Other Linker Flags" in the Xcode build settings area:
1) Adding -Xlinker -w
will suppress all linker warnings, no matter the type (this is the -w
flag to ld(1)). Obviously that will quiet this particular warning, but all other ld warnings as well.
2) Adding -Xlinker -no_objc_category_merging
will skip the optimization step where the linker combines all category methods into the base class during linking, which would then occur at runtime instead. Tiny bit slower on startup probably, but it would probably still be faster than method swizzling at runtime, and since it is during this step that ld(1) issues the warning, it will skip that too.
It appears that ld does not have a way to surgically suppress any individual warning the way the compiler does, although it has specialty flags for a couple of them or groups of them (none of which help with this one). Neither solution above is probably recommended for production code, but in some situations, one or the other might help.