在iOS上以切换模式模糊应用程序屏幕[复制]

前端之家收集整理的这篇文章主要介绍了在iOS上以切换模式模糊应用程序屏幕[复制]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Controlling the screenshot in the iOS 7 multitasking switcher8个
我希望在切换时在我的iOS应用中使用模糊效果.像PayPal和其他一些需要隐藏信息的金融应用程序.但我找不到有关此功能的任何信息或提示.

例如PayPal实现:http://40.media.tumblr.com/0334b065e28dfe2e325d32822d87246b/tumblr_mwcl35TZIt1qea4hso1_1280.jpg

解决方法

您需要将以下代码添加到applicationWillResignActive函数
let blurEffect = UIBlurEffect(style: UIBlurEffectStyle.Dark)
    let blurEffectView = UIVisualEffectView(effect: blurEffect)
    blurEffectView.frame = window!.frame
    blurEffectView.tag = 221122

    self.window?.addSubview(blurEffectView)

然后在您的applicationWillEnterForeground中,使用该行

self.window?.viewWithTag(221122)?.removeFromSuperview()
原文链接:https://www.f2er.com/iOS/332459.html

猜你在找的iOS相关文章