菜鸟教程小白 发表于 2022-12-12 22:11:09

ios - 为什么无法使用 class_getProperty 获取 UIView.frame 属性?


                                            <p><p>它总是返回 NULL 而不是属性。</p>

<pre><code>objc_property_t property = class_getProperty(, &#34;frame&#34;);
XCTAssertTrue(property != NULL,
            @&#34;UIView.frame property should be here.&#34;);
</code></pre>

<p>例如,与 <code>center</code> 一起工作正常,但与 <code>frame</code> 似乎不行。</p>

<p>谁能解释一下?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>哇,看来它确实没有这种属性,而是一种方法。文档显示为属性,但实际上它是一种方法。 <a href="https://github.com/JaviSoto/iOS7-Runtime-Headers/blob/master/Frameworks/UIKit.framework/UIView.h" rel="noreferrer noopener nofollow">https://github.com/JaviSoto/iOS7-Runtime-Headers/blob/master/Frameworks/UIKit.framework/UIView.h</a> </p>

<p>很奇怪。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 为什么无法使用 class_getProperty 获取 UIView.frame 属性?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23462023/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23462023/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 为什么无法使用 class_getProperty 获取 UIView.frame 属性?