当前位置 博文首页 > xixi:IOS 截屏得到Image

    xixi:IOS 截屏得到Image

    作者:[db:作者] 时间:2021-08-07 18:56

    - (UIImage *)snapshot:(UIView *)view
    
    {
    
        UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, 0);
    
        [view drawViewHierarchyInRect:view.bounds afterScreenUpdates:YES];
    
        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    
        UIGraphicsEndImageContext();
    
     
    
        return image;
    
    }

    cs
    下一篇:没有了