对于特定的企业iOS应用程序,我需要创建一个UIView,该UIView位于其他任何对象之上,但不拦截任何触摸。我目前正在UIWindowLevelAlert + 1上使用单独的UIWindow进行操作,其中userInteractionEnabled设置为false,如下所示:
self.alphaWindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.alphaWindow.backgroundColor = [UIColor blackColor];
self.alphaWindow.windowLevel = UIWindowLevelAlert+1;
self.alphaWindow.hidden = NO;
self.alphaWindow.userInteractionEnabled = NO;
self.alphaWindow.rootViewController = [UIViewController new];
self.alphaWindow.alpha = 1-NIGHT_MODE_BRIGHTNESS;
这有点奏效,但是有一些问题。
尤其是第二个问题对我来说似乎很奇怪。怎么解释?
位于其他任何地方的UIView的目的是使整个应用程序变暗。您能想到实现此效果的更好方法吗?