ibireme / YYKit

A collection of iOS components.
MIT License
13.99k stars 3.69k forks source link

YYlabel的一个bug #339

Open 597579501 opened 7 years ago

597579501 commented 7 years ago

image 我如果里面加了YYlabel就是这个结果。如果是label就没问题 另外

+ (UIImage *)screenView:(UIView *)view { // 下面方法,第一个参数表示区域大小。第二个参数表示是否是非透明的。如果需要显示半透明效果,需要传NO,否则传YES。第三个参数就是屏幕密度了 UIGraphicsBeginImageContextWithOptions(view.frame.size, NO, [UIScreen mainScreen].scale); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image; }

597579501 commented 7 years ago

图挂了