菜鸟教程小白 发表于 2022-12-12 15:20:46

ios - 使用 WatchKit 拍摄组元素的快照并保存到相机胶卷


                                            <p><p>我正在尝试以编程方式拍摄 Group 元素及其内容(文本标签)的快照并将其保存到相机胶卷。 </p>

<p>我通常会为 iPhone 应用程序执行类似的操作(参见代码片段),但使用 WatchKit 时,Group 元素的结构与 UIView 不同。 </p>

<p>任何帮助将不胜感激。这是我的代码:</p>



<pre class="lang-html prettyprint-override"><code>    // grab reference to the area you&#39;d like to capture
    WKInterfaceGroup *theArea = _theGroup;

    // define the size and grab a UIImage from it
    UIGraphicsBeginImageContextWithOptions(theArea.bounds.size, theArea.opaque, 0.0);
    ;
    UIImage *screengrab = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    // save screengrab to Camera Roll
    UIImageWriteToSavedPhotosAlbum(screengrab, nil, nil, nil);
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>不幸的是,当前版本的 WatchKit 中没有快照式方法,因此您提到的技术不可用。实际上,可以从 WatchKit 接口(interface)读取的属性非常少。</p>

<p>您能够执行此类操作的唯一方法是将组呈现为 WatchKit 扩展中的图像,然后使用该图像填充 <code>WKInterfaceImage</code>(或适当的背景图像) 在 watch 上。当然,这意味着您必须创建模仿 Watch 控件外观的自定义绘图代码。根据界面的复杂程度,这可能需要大量工作。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 WatchKit 拍摄组元素的快照并保存到相机胶卷,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30391483/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30391483/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 WatchKit 拍摄组元素的快照并保存到相机胶卷