我在我的项目中使用YYText
,当我设置一些属性时会导致崩溃
_contentLbl = [YYLabel new];
_contentLbl.preferredMaxLayoutWidth = 1.0;
应用程序崩溃为
[YYLabel setPreferredMaxLayoutWidth:]: unrecognized selector sent to instance 0x7fd6e89210a0
我检查并且我确定此属性已在YYLabel.h,
中定义我尝试通过方法class_copyPropertyList
将所有属性打印到类中,但我仍然找不到此属性preferredMaxLayoutWidth
我很困惑,有人可以向我解释一下吗?