How can I suppress this compiler warning:
Meta method 'prefix' in category from '...soap+prefix.o' conflicts with same method from another category
?
here is the category soap+Prefix.h:
@interface Soap (Prefix)
+(NSString*)prefix;
@end
and soap+prefix.m:
#import "Soap.h"
#import "Soap+Prefix.h"
@implementation Soap (Prefix)
+(NSString*)prefix { return @"EInspector"; }
@end
and these two files by the way are automatically generated with SudZc
wrapper for web services.
p.s. this warning is issued ONLY in XCode 4.4
thank you so much in advance.