0

我只想分享 UIView vie 电子邮件、FB 或任何用户想要的屏幕截图!以下代码仅采用 UIView 的原件,没有输入文本,也没有更改图像

CGRect rect = [mainView bounds];
    UIGraphicsBeginImageContextWithOptions(rect.size,YES,0.0f);
    CGContextRef context = UIGraphicsGetCurrentContext();
    [mainView.layer renderInContext:context];
    UIImage *capturedImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
4

1 回答 1

0

您应该能够在此答案中使用其中一种解决方案,具体取决于它是否是视网膜设备。

于 2013-01-20T07:31:11.233 回答