2014-05-04 36 views
2

它總是返回一個NULL而不是屬性。爲什麼無法用class_getProperty獲取UIView.frame屬性?

objc_property_t property = class_getProperty([UIView class], "frame"); 
XCTAssertTrue(property != NULL, 
       @"UIView.frame property should be here."); 

正常工作與center例如,但frame好像不是。

有人可以解釋一下嗎?

回答

相關問題