我从一个开源的 Objective-C 库中获得了一些代码,该库有大约十几行代码,如下所示:
#warning Handle the error here.
这会在 Xcode 中引发警告。但是,我喜欢在发布项目之前在 Xcode 中将警告降至零。
如何在不编辑此第三方库的源代码的情况下执行此操作?
我正在使用 Xcode 版本 4.6.3 (4H1503)。
==== 更新
更多代码:
- (NSDictionary *)dictionaryFromPlistData:(NSData *)data
{
NSError *error;
NSDictionary *dictionaryParsed = [NSPropertyListSerialization propertyListWithData:data
options:NSPropertyListImmutable
format:nil
error:&error];
if (!dictionaryParsed)
{
if (error)
{
#warning Handle the error here.
}
return nil;
}
return dictionaryParsed;
}