Created
June 13, 2020 13:49
-
-
Save maysamsh/8f6086025b1d2044c1c0f8eea1dbb1bc to your computer and use it in GitHub Desktop.
Revisions
-
maysamsh created this gist
Jun 13, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ // // 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 } } }