UIViewをUIImageに変換することはすでに行っていますが、UIViewの特定のセクションをUIImageに変換して、それが可能になるようにしたいです。
UIGraphicsBeginImageContext(view.bounds.size);
[view.layer drawInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();