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

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

commit d4667ac3b6cb33aaaa5b2d96bc7942742e652f5b
Author: qianyuan.wqy <[email protected]>
AuthorDate: Fri Sep 27 10:32:04 2019 +0800

    [iOS] Fix the problem that background color should use [UIColor clearColor] 
instance when transparent.
---
 ios/sdk/WeexSDK/Sources/Utility/WXConvert.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ios/sdk/WeexSDK/Sources/Utility/WXConvert.m 
b/ios/sdk/WeexSDK/Sources/Utility/WXConvert.m
index 6861b08..117f2a4 100644
--- a/ios/sdk/WeexSDK/Sources/Utility/WXConvert.m
+++ b/ios/sdk/WeexSDK/Sources/Utility/WXConvert.m
@@ -440,7 +440,7 @@ WX_NUMBER_CONVERT(NSUInteger, unsignedIntegerValue)
     g = g8 / 255.f;
     b = b8 / 255.f;
     a = a8 / 255.f;
-    return [UIColor colorWithRed:r green:g blue:b alpha:a];
+    return a < 0.5 ? [UIColor clearColor] : [UIColor colorWithRed:r green:g 
blue:b alpha:a];
 }
 
 + (uint32_t)RGBAColorFromUIColor:(UIColor*)color

Reply via email to