ビューの署名部分を次のように変換する必要がある署名を描画しているビューがありUIImage
、ここに表示するのUIImageView
は、変換に使用しているネットから取得したコードです
UIGraphicsBeginImageContext(signatureView.bounds.size);
[signatureView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
logoImageView.image=img;
UIGraphicsEndImageContext();