菜鸟教程小白 发表于 2022-12-12 18:41:31

ios - 错误提示:升级到版本 5 时缺少功能 mergeWith


                                            <p><p>我的 iOS 正在使用 <a href="https://github.com/bugsnag/bugsnag-cocoa" rel="noreferrer noopener nofollow">Bugsnag</a>我正在尝试将其从 4.1.0 版升级到 5 版。</p>

<p>新的 SDK 破坏了 4.x 版中提供的功能:</p>

<pre><code>[[ metaData] mergeWith:parameters];
</code></pre>

<p><em>parameters</em> 的类型是 <code>NSDictionary</code>。</p>

<p>我在 SDK 中找不到任何替代品,此外:</p>

<pre><code>- (void)addAttribute:(NSString*)attributeName withValue:(id)value toTabWithName:(NSString*)tabName
</code></pre>

<p>但它不提供与 <code>value</code> 可能是 <code>NSDictionary</code> 本身相同的功能。此外,它还将在每次添加时调用 <code></code> (非常低效)。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在查看 <a href="https://github.com/bugsnag/bugsnag-cocoa" rel="noreferrer noopener nofollow">Github repository</a> 之后并看到版本之间 <code>BugsnagMetaData</code> 的差异,我找到了恢复此功能的方法。我写了一个扩展类的类别:</p>

<pre><code>@interface BugsnagMetaData (BugsnagExtension)

- (void)mergeWith:(NSDictionary *)data;

@end

@implementation BugsnagMetaData (BugsnagExtension)

- (void)mergeWith:(NSDictionary *)data {
    @synchronized(self) {
      NSString *customDataKey = @&#34;customData&#34;;
      [data enumerateKeysAndObjectsUsingBlock:^(id key, id value, BOOL *stop) {
            NSMutableDictionary *destination = ;
            if (]) {
                NSDictionary *source = value;
                [source enumerateKeysAndObjectsUsingBlock:^(id sourceKey, id sourceValue, BOOL *stop) {
                  if ( &amp;&amp; ]) {
                        [ mergeWith:(NSDictionary *)sourceValue];
                  } else {
                        ;
                  }
                }];

            } else {
                ;
            }
      }];

      ;
    }
}

@end
</code></pre>

<p>这个函数能够像以前一样接受包含 NSDictionary 的 NSDictionary,并且仅在需要时有效地调用 <code></code>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 错误提示:升级到版本 5 时缺少功能 mergeWith,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35682966/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35682966/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 错误提示:升级到版本 5 时缺少功能 mergeWith