- (BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(takeScreenShot:) name:UIApplicationUserDidTakeScreenshotNotification object:nil];
}
- (void)takeScreenShot:(NSNotification*)notice
{
[MBProgressHUD showError:@"禁止截屏"];
NSLog(@"禁止截屏");
}