菜鸟教程小白 发表于 2022-12-12 17:20:08

iOS 截图警告


                                            <p><p>我需要在我的应用中截取一些图表,</p>

<p>我使用以下代码:</p>

<pre><code>CGRect screenRect = [ bounds];
UIGraphicsBeginImageContext(screenRect.size);
CGContextRef ctx = UIGraphicsGetCurrentContext();
[ set];
CGContextFillRect(ctx, screenRect);
;
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
</code></pre>

<p>但在 <code>;</code> 我得到警告 <code>Instance method -renderInContext: not found (return type defaults to id)</code></p>

<p>那么,我错过了什么?避免此警告并成功截取我的屏幕截图??</p>

<p>非常感谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你需要<strong><code>#import <QuartzCore/QuartzCore.h></code></strong></p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS 截图警告,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7253624/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7253624/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS 截图警告