[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(screenshotsDone) name:UIApplicationUserDidTakeScreenshotNotification object:nil];
监听到截图以后,可以在screenshotsDone做一些弹框或者其他的提示操作
注:截图属于系统操作,不能禁止
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(screenshotsDone) name:UIApplicationUserDidTakeScreenshotNotification object:nil];
监听到截图以后,可以在screenshotsDone做一些弹框或者其他的提示操作
注:截图属于系统操作,不能禁止