ios - 为什么无法使用 class_getProperty 获取 UIView.frame 属性?
<p><p>它总是返回 NULL 而不是属性。</p>
<pre><code>objc_property_t property = class_getProperty(, "frame");
XCTAssertTrue(property != NULL,
@"UIView.frame property should be here.");
</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]