2
我的iOS使用Bugsnag,我試圖把它從4.1.0版本升級到版本5Bugsnag:缺少功能mergeWith升級到版本時5
新的SDK突破,在4版本可用的功能.X:
[[[Bugsnag configuration] metaData] mergeWith:parameters];
凡參數是NSDictionary
類型。
我找不到在SDK中的任何替代品,除了:
- (void)addAttribute:(NSString*)attributeName withValue:(id)value toTabWithName:(NSString*)tabName
但它不提供相同的功能,其中value
可能是一個NSDictionary
本身。此外,它還會在每次添加時調用[self.delegate metaDataChanged:self]
(非常低效)。