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
好像不是。
有人可以解釋一下嗎?