You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by mo...@apache.org on 2020/08/11 09:08:02 UTC

[incubator-weex] branch master updated: [iOS] fix image can not show when use xcode12 build

This is an automated email from the ASF dual-hosted git repository.

moshen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-weex.git


The following commit(s) were added to refs/heads/master by this push:
     new e0de1af  [iOS] fix image can not show when use xcode12 build
     new 9c40045  Merge pull request #3251 from jianhan-he/master
e0de1af is described below

commit e0de1afb12e0ed550c5e24b4ba7fe937d72b0b06
Author: linghe.lh <li...@alibaba-inc.com>
AuthorDate: Tue Aug 11 16:18:01 2020 +0800

    [iOS] fix image can not show when use xcode12 build
---
 ios/sdk/WeexSDK/Sources/Display/WXLayer.m | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ios/sdk/WeexSDK/Sources/Display/WXLayer.m b/ios/sdk/WeexSDK/Sources/Display/WXLayer.m
index d293d6d..48cb022 100644
--- a/ios/sdk/WeexSDK/Sources/Display/WXLayer.m
+++ b/ios/sdk/WeexSDK/Sources/Display/WXLayer.m
@@ -26,6 +26,7 @@
 
 - (void)display
 {
+    [super display];
     [self.wx_component _willDisplayLayer:self];
 }