We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5ed855 commit 0207839Copy full SHA for 0207839
iOS/DoraemonKit/Src/Core/Plugin/ViewMetrics/Function/UIView+DoraemonViewMetrics.m
@@ -34,6 +34,12 @@ - (BOOL)shouldShowMetricsView
34
return NO;
35
}
36
37
+ //高德地图也有问题
38
+ NSString *className = NSStringFromClass([self class]);
39
+ if ([className hasPrefix:@"MA"]) {
40
+ return NO;
41
+ }
42
+
43
// 状态栏不需要显示元素边框
44
NSString *statusBarString = [NSString stringWithFormat:@"_statusBarWindow"];
45
UIWindow *statusBarWindow = [[UIApplication sharedApplication] valueForKey:statusBarString];
0 commit comments