我有一个视图,其中我正在绘制签名我希望视图的签名部分应转换为UIImage
然后在UIImageView
此处显示它是我从用于转换的网络获得的代码
UIGraphicsBeginImageContext(signatureView.bounds.size);
[signatureView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
logoImageView.image=img;
UIGraphicsEndImageContext();