Skip to content

Instantly share code, notes, and snippets.

@MadeBugs
Last active July 19, 2019 08:18
Show Gist options
  • Save MadeBugs/3ecf4597318f0dcf432cacf61d32276f to your computer and use it in GitHub Desktop.
Save MadeBugs/3ecf4597318f0dcf432cacf61d32276f to your computer and use it in GitHub Desktop.
获取当前屏幕截图
// 截取屏幕生成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