Swift and swiftcode

Source: Internet
Author: User

Swift and swiftcode

Lossless Swift-UIView

 

Effect

 

Source code

/// UIView + ScreensShot. swift // Swift-Animations // Created by YouXianMing on 16/9/5. // Copyright©2016 YouXianMing. all rights reserved. // import UIKitextension UIView {/** Get the view's screen shot, this function may be called from any thread of your app. -returns: The screen shot's image. */func screenShot ()-> UIImage? {Guard frame. size. height> 0 & frame. size. width> 0 else {return nil} uigraphicsbeginimagecontextwitexceptions (frame. size, false, 0) layer. renderInContext (UIGraphicsGetCurrentContext ()!) Let image = UIGraphicsGetImageFromCurrentImageContext () UIGraphicsEndImageContext () return image }}

 

Use

/// ViewController. swift // ScreenShot /// Created by YouXianMing on 16/9/5. // Copyright©2016 YouXianMing. all rights reserved. // import UIKitclass ViewController: UIViewController {override func viewDidLoad () {super. viewDidLoad () let redView = UIView (frame: CGRectMake (40, 40,200,200) redView. backgroundColor = UIColor. redColor (). colorWithAlphaComponent (0.5) view. addSubview (redView) let imageView = UIImageView (image: redView. screenShot () view. addSubview (imageView )}}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.