Stewen 2023-10-08 11:15:14 +08:00
parent 3fada76eb9
commit dd962f21de
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ static NSString *kUserAnnotationId = @"FATUserAnnotationViewId";
} }
///bgView ///bgView
UIView* bgView = [[UIView alloc] initWithFrame:self.view.bounds]; UIView* bgView = [[UIView alloc] initWithFrame:self.view.bounds];
bgView.backgroundColor = isDark ? UIColor.blackColor : UIColor.whiteColor; bgView.backgroundColor = isDark ? UIColor.orangeColor : UIColor.orangeColor;
[self.view addSubview:bgView]; [self.view addSubview:bgView];
self.view.backgroundColor = isDark ? UIColor.blackColor : UIColor.whiteColor; self.view.backgroundColor = isDark ? UIColor.blackColor : UIColor.whiteColor;