iOS小知识点07(截屏)
2016-05-30 本文已影响80人
丨n水瓶座菜虫灬
屏幕截图:
- (UIImage *)shotScreen {
UIWindow *window = [UIApplication sharedApplication].keyWindow;
UIGraphicsBeginImageContext(window.bounds.size);
[window.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}