Created
June 13, 2020 13:49
-
-
Save maysamsh/8f6086025b1d2044c1c0f8eea1dbb1bc to your computer and use it in GitHub Desktop.
Create snapshot using drawHierarchy() to include child views
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
// | |
// 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