菜鸟教程小白 发表于 2022-12-13 03:43:38

ios - 无法同时满足打开相机的约束


                                            <p><p><strong>我有一个应用程序,它使用 webview 来显示一些 HTML 表单。在 HTML 表单中,添加了从设备中选择图像的功能。所有功能都来自用于捕获图像的 HTML 表单。当我从 webview 摄像头单击表单的浏览按钮时,一切正常,但我在 xcode 下登录。</strong></p>

<pre><code>Snapshotting a view that has not been rendered results in an empty snapshot. Ensure your view has been rendered at least once before snapshotting or snapshot after screen updates.
Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don&#39;t want. Try this: (1) look at each constraint and try to figure out which you don&#39;t expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you&#39;re seeing NSAutoresizingMaskLayoutConstraints that you don&#39;t understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
    &#34;&lt;NSLayoutConstraint:0x16fa21f0 UIView:0x180afaa0.height == 0.454545*CAMModeDial:0x16f06760.height - 4.09091&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x18065020 CAMShutterButton:0x180bfbc0.centerY == CAMBottomBar:0x16f06100.centerY&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x18065b70 V:-(0)-&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x18065ba0 CAMModeDial:0x16f06760.bottom == UIButton:0x180b5870&#39;Cancel&#39;.top&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x180645f0 V:-(31)-|   (Names: &#39;|&#39;:CAMBottomBar:0x16f06100 )&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x180b6870 &#39;UIView-Encapsulated-Layout-Height&#39; V:&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x180b8780 CAMBottomBar:0x16f06100.height == PLImagePickerCameraView:0x170f2600.height&gt;&#34;
)

Will attempt to recover by breaking constraint
&lt;NSLayoutConstraint:0x16fa21f0 UIView:0x180afaa0.height == 0.454545*CAMModeDial:0x16f06760.height - 4.09091&gt;

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in &lt;UIKit/UIView.h&gt; may also be helpful.

Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don&#39;t want. Try this: (1) look at each constraint and try to figure out which you don&#39;t expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you&#39;re seeing NSAutoresizingMaskLayoutConstraints that you don&#39;t understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
    &#34;&lt;NSLayoutConstraint:0x18065020 CAMShutterButton:0x180bfbc0.centerY == CAMBottomBar:0x16f06100.centerY&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x18065b70 V:-(0)-&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x18065ba0 CAMModeDial:0x16f06760.bottom == UIButton:0x180b5870&#39;Cancel&#39;.top&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x180645f0 V:-(31)-|   (Names: &#39;|&#39;:CAMBottomBar:0x16f06100 )&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x180b6870 &#39;UIView-Encapsulated-Layout-Height&#39; V:&gt;&#34;,
    &#34;&lt;NSLayoutConstraint:0x180b8780 CAMBottomBar:0x16f06100.height == PLImagePickerCameraView:0x170f2600.height&gt;&#34;
)

Will attempt to recover by breaking constraint
&lt;NSLayoutConstraint:0x18065b70 V:-(0)-&gt;

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in &lt;UIKit/UIView.h&gt; may also be helpful.
</code></pre>

<p><strong>我无法解决它,谁能帮我理解这些错误并建议如何解决它们?</strong></p>

<p><strong>编辑</strong> :- 在网上搜索 <strong>CAMShutterButton,CAMModeDial,CAMBottomBar,PLImagePickerCameraView</strong> 我发现 <strong>CAMShutterButton.h,CAMModeDial.h,CAMBottomBar.h</strong>> 是 <strong>CameraKit.framework</strong> 中的类文件,<strong>PLImagePickerCameraView.h</strong> 是 <strong>PhotoLibrary.framework</strong> 中的类文件。它们是 iOS 8 私有(private)框架的一部分,但我没有在我的应用程序中使用它们中的任何一个。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>改变约束的优先级</p>

<pre><code>&#34;&lt;NSLayoutConstraint:0x18065b70 V:-(0)-&gt;&#34; from Required(1000) to High(750)
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无法同时满足打开相机的约束,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27247695/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27247695/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无法同时满足打开相机的约束