我想在我的整个应用程序顶部有一个聚光灯效果的 PNG 图像。即使键盘弹出。
这可能吗?
将 PNG 添加到覆盖其他所有内容的新窗口:
UIWindow *totalOverlayWindow = [[UIWindow alloc] init];
totalOverlayWindow.frame = [[UIScreen mainScreen] bounds];
totalOverlayWindow.userInteractionEnabled = NO;
totalOverlayWindow.windowLevel = UIWindowLevelStatusBar + 1;
[totalOverlayWindow makeKeyAndVisible];
这个窗口现在将高于一切。