草庐IT

totalOverlayWindow

全部标签

iphone - 是否可以将图像叠加在整个 iOS 应用程序上?

我想在我的整个应用程序之上添加聚光灯效果PNG图像。即使键盘弹出。这可能吗? 最佳答案 将PNG添加到覆盖其他所有内容的新窗口:UIWindow*totalOverlayWindow=[[UIWindowalloc]init];totalOverlayWindow.frame=[[UIScreenmainScreen]bounds];totalOverlayWindow.userInteractionEnabled=NO;totalOverlayWindow.windowLevel=UIWindowLevelStatusBar+1;