ios - 截取 UIPickerView 的屏幕截图
<p><p>我使用以下代码截取我的 View :</p>
<pre><code>UIGraphicsBeginImageContextWithOptions(containerView.bounds.size, NO, [ scale]);
;
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
</code></pre>
<p>它适用于大多数情况,但当 View 包含 <code>UIPickerView</code></p> 时会生成下图
<p> <img src="/image/kTBS9.png" alt="image that is produced"/> </p>
<p>这就是我想要制作的图像。</p>
<p> <img src="/image/uH2K5.png" alt="the desired image"/> </p>
<p>发生了什么,我该如何解决这个问题,有什么想法吗??</p>
<p>谢谢大家!</p>
<p>编辑:请注意这发生在设备和模拟器上</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我通过使用 <code>drawViewHierarchyInRect:</code></p> 解决了这个问题
<pre><code>UIGraphicsBeginImageContextWithOptions(containerView.bounds.size, NO, [ scale]);
;
UIImage * image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
</code></pre></p>
<p style="font-size: 20px;">关于ios - 截取 UIPickerView 的屏幕截图,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/30055107/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/30055107/
</a>
</p>
页:
[1]