Skip to content

Instantly share code, notes, and snippets.

@maysamsh
Created June 13, 2020 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maysamsh/8f6086025b1d2044c1c0f8eea1dbb1bc to your computer and use it in GitHub Desktop.
Save maysamsh/8f6086025b1d2044c1c0f8eea1dbb1bc to your computer and use it in GitHub Desktop.
Create snapshot using drawHierarchy() to include child views
//
// UIView+Ext.swift
// tahrir
//
// Created by Maysam Shahsavari on 9/14/19.
// Copyright © 2019 Maysam Shahsavari. All rights reserved.
//
import Foundation
import UIKit
extension UIView {
func snapshot() -> UIImage? {
UIGraphicsBeginImageContextWithOptions(bounds.size, false, 0.0)
drawHierarchy(in: CGRect(origin: CGPoint.zero, size: bounds.size), afterScreenUpdates: true)
if let image = UIGraphicsGetImageFromCurrentImageContext() {
UIGraphicsEndImageContext()
return image
}else{
return nil
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment