我在我的iPhone应用程序中使用OHAttributedLabel但是我收到了警告。
Warning: the numberOfLines property is not yet supported by CoreText and OHAttributedLabel. (this property is ignored right now)
This is a known issue (Help to solve this would be greatly appreciated).
See https://github.com/AliSoftware/OHAttributedLabel/issues/34
此外,我没有得到任何解决方案可以任何人建议我如何解决它,如果我上传我的应用程序而不删除此警告将我的应用程序被苹果拒绝。
答案 0 :(得分:3)
嗯,正如警告所说, OHAttributedLabel 不支持numberOfLines
。删除警告的唯一方法是在 OHAttributedLabel 支持之前不设置numberOfLines
属性。
如果您的应用使用NSLog()
,它将不会被Apple拒绝,但您应该避免使用它,因为这是一个坏习惯。日志信息对您和您的用户来说是无用的,如果发送了许多日志消息,它将降低性能。
答案 1 :(得分:0)
由于这些错误,因为它不支持NSAttributedString的大多数功能。
最好使用TTTAttributedLabel。