在 Xcode 中更新到最新的 Chartboost SDK 后出现以下问题。
(void)didCacheInterstitial:(NSString *)location { NSLog(@"interstitial 缓存在位置 %@", location);
(void)didDismissInterstitial:(NSString *)location { NSLog(@"dismissed interstitial at location %@", location);
[[Chartboost sharedChartboost] cacheInterstitial:location];
我收到的错误消息是:
'didCacheinterstitial:' 实现中的参数类型冲突:'CBlocation vs 'NSString*'
无法使用“NSString*”类型的 Ivalue 初始化“CBlocation”类型的参数
任何解决此问题的帮助将不胜感激。