欢迎使用CSDN-markdown编辑器

如果要在iOS开发中现一个截图分享的功能,其实还不算什么难题。

一个函数就可以搞定:

  • (UIImage *) captureScreen {
    UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
    CGRect rect = [keyWindow bounds];
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    [keyWindow.layer renderInContext:context];
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return img;
    }

如果要保存到相册:

  • (void)saveScreenshotToPhotosAlbum:(UIView *)view
    {
    UIImageWriteToSavedPhotosAlbum([self captureScreen], nil, nil, nil);
    }

你可能感兴趣的:(snapshot,ios开发,截图)