From 752c8d06407ec960d05135e7f0ed44149f26da8f Mon Sep 17 00:00:00 2001 From: Stewen <784547228@qq.com> Date: Sun, 8 Oct 2023 13:48:09 +0800 Subject: [PATCH] add fgView --- .../FinAppletExt/Common/Util/Map/FATMapViewController.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ios/Classes/FinAppletExt/Common/Util/Map/FATMapViewController.m b/ios/Classes/FinAppletExt/Common/Util/Map/FATMapViewController.m index b7c04ef..8ea1328 100644 --- a/ios/Classes/FinAppletExt/Common/Util/Map/FATMapViewController.m +++ b/ios/Classes/FinAppletExt/Common/Util/Map/FATMapViewController.m @@ -90,7 +90,7 @@ static NSString *kUserAnnotationId = @"FATUserAnnotationViewId"; } ///bgView UIView* bgView = [[UIView alloc] initWithFrame:self.view.bounds]; - bgView.backgroundColor = isDark ? UIColor.orangeColor : UIColor.orangeColor; + bgView.backgroundColor = isDark ? UIColor.blackColor : UIColor.whiteColor; [self.view addSubview:bgView]; self.view.backgroundColor = isDark ? UIColor.blackColor : UIColor.whiteColor; @@ -172,6 +172,10 @@ static NSString *kUserAnnotationId = @"FATUserAnnotationViewId"; }); }; [self.view addSubview:self.slideView]; + + UIView* fgView = [[UIView alloc] initWithFrame:self.view.bounds]; + fgView.backgroundColor = UIColor.greenColor; + [self.view addSubview:fgView]; } - (void)locationOnClick {