我的 iOS 正在使用 Bugsnag我正在尝试将其从 4.1.0 版升级到 5 版。
新的 SDK 破坏了 4.x 版中提供的功能:
[[[Bugsnag configuration] metaData] mergeWith:parameters];
parameters 的类型是 NSDictionary 。
我在 SDK 中找不到任何替代品,此外:
- (void)addAttributeNSString*)attributeName withValueid)value toTabWithNameNSString*)tabName
但它不提供与 value 可能是 NSDictionary 本身相同的功能。此外,它还将在每次添加时调用 [self.delegate metaDataChanged:self] (非常低效)。
Best Answer-推荐答案 strong>
在查看 Github repository 之后并看到版本之间 BugsnagMetaData 的差异,我找到了恢复此功能的方法。我写了一个扩展类的类别:
@interface BugsnagMetaData (BugsnagExtension)
- (void)mergeWithNSDictionary *)data;
@end
@implementation BugsnagMetaData (BugsnagExtension)
- (void)mergeWithNSDictionary *)data {
@synchronized(self) {
NSString *customDataKey = @"customData";
[data enumerateKeysAndObjectsUsingBlock:^(id key, id value, BOOL *stop) {
NSMutableDictionary *destination = [self getTab:customDataKey];
if ([value isKindOfClass:[NSDictionary class]]) {
NSDictionary *source = value;
[source enumerateKeysAndObjectsUsingBlock:^(id sourceKey, id sourceValue, BOOL *stop) {
if ([destination objectForKey:sourceKey] && [sourceValue isKindOfClass:[NSDictionary class]]) {
[[destination objectForKey:sourceKey] mergeWithNSDictionary *)sourceValue];
} else {
[destination setObject:sourceValue forKey:sourceKey];
}
}];
} else {
[destination setObject:value forKey:key];
}
}];
[self.delegate metaDataChanged:self];
}
}
@end
这个函数能够像以前一样接受包含 NSDictionary 的 NSDictionary,并且仅在需要时有效地调用 [self.delegate metaDataChanged:self] 。
关于ios - 错误提示:升级到版本 5 时缺少功能 mergeWith,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/35682966/
|