Bugsnag:升级到版本 5 时缺少函数 mergeWith
Bugsnag: Missing function mergeWith when upgrading to version 5
我的 iOS 正在使用 Bugsnag,我正在尝试将它从版本 4.1.0 升级到版本 5。
新 SDK 破坏了版本 4.x:
中可用的功能
[[[Bugsnag configuration] metaData] mergeWith:parameters];
其中 parameters 的类型为 NSDictionary
.
我在 SDK 中找不到任何替代品,除了:
- (void)addAttribute:(NSString*)attributeName withValue:(id)value toTabWithName:(NSString*)tabName
但它不提供 value
本身可能是 NSDictionary
的相同功能。此外,它还会在每次添加时调用 [self.delegate metaDataChanged:self]
(非常低效)。
查看 Github repository 并看到版本之间 BugsnagMetaData
的差异后,我找到了恢复此功能的方法。我写了一个扩展 class:
的类别
@interface BugsnagMetaData (BugsnagExtension)
- (void)mergeWith:(NSDictionary *)data;
@end
@implementation BugsnagMetaData (BugsnagExtension)
- (void)mergeWith:(NSDictionary *)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] mergeWith:(NSDictionary *)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 正在使用 Bugsnag,我正在尝试将它从版本 4.1.0 升级到版本 5。
新 SDK 破坏了版本 4.x:
中可用的功能[[[Bugsnag configuration] metaData] mergeWith:parameters];
其中 parameters 的类型为 NSDictionary
.
我在 SDK 中找不到任何替代品,除了:
- (void)addAttribute:(NSString*)attributeName withValue:(id)value toTabWithName:(NSString*)tabName
但它不提供 value
本身可能是 NSDictionary
的相同功能。此外,它还会在每次添加时调用 [self.delegate metaDataChanged:self]
(非常低效)。
查看 Github repository 并看到版本之间 BugsnagMetaData
的差异后,我找到了恢复此功能的方法。我写了一个扩展 class:
@interface BugsnagMetaData (BugsnagExtension)
- (void)mergeWith:(NSDictionary *)data;
@end
@implementation BugsnagMetaData (BugsnagExtension)
- (void)mergeWith:(NSDictionary *)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] mergeWith:(NSDictionary *)sourceValue];
} else {
[destination setObject:sourceValue forKey:sourceKey];
}
}];
} else {
[destination setObject:value forKey:key];
}
}];
[self.delegate metaDataChanged:self];
}
}
@end
此函数可以像以前一样接受包含 NSDictionary 的 NSDictionary,并且仅在需要时才有效地调用 [self.delegate metaDataChanged:self]
。