2

我的 iOS 正在使用Bugsnag,我正在尝试将其从 4.1.0 版升级到 5 版。

新的 SDK 破坏了 4.x 版本中可用的功能:

[[[Bugsnag configuration] metaData] mergeWith:parameters];

其中参数是类型NSDictionary

我在 SDK 中找不到任何替代品,除了:

- (void)addAttribute:(NSString*)attributeName withValue:(id)value toTabWithName:(NSString*)tabName

但它没有提供与valueaNSDictionary本身相同的功能。此外,它还会[self.delegate metaDataChanged:self]在每次添加时调用(非常低效)。

4

1 回答 1

2

在查看Github 存储库并查看BugsnagMetaData版本之间的差异后,我找到了恢复此功能的方法。我写了一个扩展类的类别:

@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]仅在需要时才有效调用。

于 2016-02-28T13:14:00.853 回答