我已经完成了将 UIView 转换为 UIImage 的操作,但我希望将 UIView 的任何特定部分转换为 UIImage 以便有可能
UIGraphicsBeginImageContext(view.bounds.size);
[view.layer drawInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();