菜鸟教程小白 发表于 2022-12-12 15:56:08

ios - 如何通过其指针获取 NSLayoutConstraints 标识符?


                                            <p><p>我在 Storyboard <code>identifier</code> 中为每个约束设置:</p>
<p> <a href="/image/QlEh5.png" rel="noreferrer noopener nofollow"><img src="/image/QlEh5.png" alt="enter image description here"/></a> </p>
<p>现在我得到了 <code>unsatisfiable 约束</code> 的错误。我尝试通过打印约束的指针来调试它:</p>
<pre><code>po 0x17db78d0
</code></pre>
<p>现在要调查它是什么约束,我想打印它的 <code>identifier</code> 就像:</p>
<pre><code>po 0x17db78d0.identifer.
</code></pre>
<p>...但它不起作用。我收到一个错误:</p>
<blockquote>
<p>error: hexadecimal floating constants require an exponent</p>
<p>error: 1 errors parsing expression</p>
</blockquote>
<p>因此,如何打印特定 <code>NSLayoutConstraint</code> 的标识符?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>po ((NSLayoutConstraint *)0x17db78d0).identifier</code></p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何通过其指针获取 NSLayoutConstraints 标识符?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31832423/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31832423/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何通过其指针获取 NSLayoutConstraints 标识符?