ios7 实现应用内保真截屏

    CGSize size = self.content.bounds.size;
    
    UIGraphicsBeginImageContextWithOptions(size, NO, [UIScreen mainScreen].scale);
    
    [self.content drawViewHierarchyInRect:self.content.bounds afterScreenUpdates:YES];
    
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

 

posted @ 2016-07-26 17:19  Nuius  阅读(147)  评论(0编辑  收藏  举报