Last active
July 19, 2019 08:18
-
-
Save MadeBugs/3ecf4597318f0dcf432cacf61d32276f to your computer and use it in GitHub Desktop.
获取当前屏幕截图
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 截取屏幕生成UIImage | |
func shoutScreen() -> UIImage { | |
let render = UIGraphicsImageRenderer(size: (window?.bounds.size)!) | |
let image = render.image { (ctx) in | |
window?.drawHierarchy(in: window!.bounds, afterScreenUpdates: false) | |
} | |
return img | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment