OStack程序员社区-中国程序员成长平台

标题: ios - 错误提示:升级到版本 5 时缺少功能 mergeWith [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 18:41
标题: ios - 错误提示:升级到版本 5 时缺少功能 mergeWith

我的 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-推荐答案


在查看 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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4