美文网首页
iOS 监听用户手动截屏的通知

iOS 监听用户手动截屏的通知

作者: rockyMJ | 来源:发表于2019-05-06 11:26 被阅读0次
#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_8_0
    if ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0){
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(userDidTakeScreenshot:) name:UIApplicationUserDidTakeScreenshotNotification object:nil];
    }
#endif

相关文章

网友评论

      本文标题:iOS 监听用户手动截屏的通知

      本文链接:https://www.haomeiwen.com/subject/yfkroqtx.html