objective-c – NSAttributedString在iOS 6之前可用吗?

前端之家收集整理的这篇文章主要介绍了objective-c – NSAttributedString在iOS 6之前可用吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我发现有关NSAttributedString在iOS版本6之前的可用性有冲突的信息.如果它有些向后兼容,这将是非常有用的.

在这里它说它是可用的iOS 4:
Why No NSAttributedString on the iPhone?

在苹果网站上,它表示iOS 6及更高版本:https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSAttributedString_Class/Reference/Reference.html

我试着在我的代码中实现它:

NSAttributedString *commentString = [[NSAttributedString alloc] initWithString:@"I really love raisins" attributes:@{NSForegroundColorAttributeName: [UIColor blackColor]}];

它适用于iOS 6,但在iOS 5或iOS 5.1中尝试运行时不起作用.我还没有测试过早期的版本.

我只是试图使用旧版本中不包含的功能

解决方法

自从iOS3.2以来一直存在.然而,在iOS6之前,只能在某些UI控件(如UILabel,UIButton,UITextView等)中使用它们的功能.您仍然可以使用CoreText使用它们,6.0.
原文链接:https://www.f2er.com/c/112394.html

猜你在找的C&C++相关文章