Commit 2c2dcef3 authored by zhangshuai's avatar zhangshuai

bug

parent 6f9c574f
...@@ -383,7 +383,7 @@ ...@@ -383,7 +383,7 @@
* This method is called when rendering a nativeExpressAdView successed, and nativeExpressAdView.size.height has been updated * This method is called when rendering a nativeExpressAdView successed, and nativeExpressAdView.size.height has been updated
*/ */
- (void)nativeExpressAdViewRenderSuccess:(BUNativeExpressAdView *)nativeExpressAdView;{ - (void)nativeExpressAdViewRenderSuccess:(BUNativeExpressAdView *)nativeExpressAdView;{
if (self.currentData.loadADType != ADType_BigImage) { if (self.currentData.loadADType == ADType_BigImage) {
self.showSuccessCallbackBlock(self.currentData, YES); self.showSuccessCallbackBlock(self.currentData, YES);
} }
...@@ -393,7 +393,7 @@ ...@@ -393,7 +393,7 @@
* This method is called when a nativeExpressAdView failed to render * This method is called when a nativeExpressAdView failed to render
*/ */
- (void)nativeExpressAdViewRenderFail:(BUNativeExpressAdView *)nativeExpressAdView error:(NSError *_Nullable)error;{ - (void)nativeExpressAdViewRenderFail:(BUNativeExpressAdView *)nativeExpressAdView error:(NSError *_Nullable)error;{
if (self.currentData.loadADType != ADType_BigImage) { if (self.currentData.loadADType == ADType_BigImage) {
self.showSuccessCallbackBlock(self.currentData, NO); self.showSuccessCallbackBlock(self.currentData, NO);
self.currentData.ADError = error; self.currentData.ADError = error;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment