如何抑制此编译器警告:
Meta method 'prefix' in category from '...soap+prefix.o' conflicts with same method from another category
?这是soap+Prefix.h的类别:
@interface Soap (Prefix)
+(NSString*)prefix;
@end
和肥皂+前缀.m:
#import "Soap.h"
#import "Soap+Prefix.h"
@implementation Soap (Prefix)
+(NSString*)prefix { return @"EInspector"; }
@end
SudZc
顺便说一下,这两个文件是使用Web 服务的包装器自动生成的。
ps 此警告仅在 XCode 4.4 中发出
非常感谢你。