iOS 监听用户手动截屏的通知
2019-05-06 本文已影响0人
rockyMJ
#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