当前位置:   article > 正文

iOS截屏和录屏监听处理(Swift)_swift禁止用户截屏

swift禁止用户截屏
  • 最近公司应用安全检查,在用户登录页面要防止截屏和录屏导致用户名密码等敏感信息泄露。
  • iOS实现不了不让截屏或者录屏,但是提供的截屏或者录屏的监听方法,当用户截屏或录屏时系统会发送相关通知,我们可以提示用户截屏或录屏会泄露一些个人安全信息,类似于微信或支付宝的付款码截屏。
  • 截屏通知名:UIApplicationUserDidTakeScreenshot
  • 录屏是iOS11之后才有的功能,UIScreenisCaptured方法可以捕获此屏幕状态变化,例如,录制、空中播放、镜像就会为真。 录屏通知名:UIScreenCapturedDidChange,我们也可以监听录屏通知。
  • 示例效果
    示例效果
  • 详细示例代码:
import UIKit
class ViewController: UIViewController {
    //监听屏幕状态
    override func viewDidLoad() {
        super.viewDidLoad()
        //监听截屏通知
        NotificationCenter.default.addObserver(self, selector: #selector(screenshots), name: NSNotification.Name.UIApplicationUserDidTakeScreenshot, object: nil)
        //监听录屏通知,iOS 11后才有录屏
        if(UIDevice.current.systemVersion >= "11.0"){
            //如果正在捕获此屏幕(例如,录制、空中播放、镜像等),则为真
            if UIScreen.main.isCaptured {
             screenshots()
            }
            //捕获的屏幕状态发生变化时,会发送UIScreenCapturedDidChange通知,监听该通知
            NotificationCenter.default.addObserver(self, selector: #selector(screenshots), name: NSNotification.Name.UIScreenCapturedDidChange, object: nil)
        }
    }
    
    //提示用户
    @objc func screenshots(){
        let alertvc = UIAlertController(title: "提示", message: "为保证用户名,密码安全,请不要截屏或录屏!", preferredStyle: UIAlertControllerStyle.alert)
        let action = UIAlertAction(title: "知道了", style: UIAlertActionStyle.default, handler: { (action) in
            alertvc.dismiss(animated: true, completion: nil)
        })
        alertvc.addAction(action)
        self.present(alertvc, animated: true, completion: nil);
    }
    
    //析构函数中移除通知监听者
    deinit {
        NotificationCenter.default.removeObserver(self, name: NSNotification.Name.UIApplicationUserDidTakeScreenshot, object: nil);
        if(UIDevice.current.systemVersion >= "11.0"){
            NotificationCenter.default.removeObserver(self, name: NSNotification.Name.UIScreenCapturedDidChange, object: nil);
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36

iOS录屏截屏示例源码

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/260731
推荐阅读
相关标签
  

闽ICP备14008679号