3

我想在我的整个应用程序顶部有一个聚光灯效果的 PNG 图像。即使键盘弹出。

这可能吗?

4

1 回答 1

6

将 PNG 添加到覆盖其他所有内容的新窗口:

UIWindow *totalOverlayWindow = [[UIWindow alloc] init];
totalOverlayWindow.frame = [[UIScreen mainScreen] bounds];
totalOverlayWindow.userInteractionEnabled = NO;
totalOverlayWindow.windowLevel = UIWindowLevelStatusBar + 1;
[totalOverlayWindow makeKeyAndVisible];

这个窗口现在将高于一切。

于 2013-02-13T07:31:47.653 回答