八六一之家
Results
1
issues of
八六一之家
// 获取view的截图图片 void ZFSnapshotViewInRect(UIView *view, CGRect rect,CGImageRef *imageRef) { UIGraphicsBeginImageContextWithOptions(CGSizeMake(rect.size.width/2.0, rect.size.height/2.0), NO, 0.0); CGContextRef ctx = UIGraphicsGetCurrentContext(); if (!ctx) { NSLog(@"-------截图图片 失败"); imageRef = nil; } [view drawViewHierarchyInRect:rect afterScreenUpdates:FALSE]; UIImage...