Questions tagged «nsattributedstring»

NSAttributedString对象管理字符串以及应用于字符串中单个字符或字符范围的关联属性集(例如,字体和字距调整)。字符及其属性的关联称为属性字符串。

10
属性文本中心对齐
我已经尝试了所有内容,但似乎无法以本文为中心。有人可以告诉我错误在哪里。 NSMutableParagraphStyle *paragraphStyle = NSMutableParagraphStyle.new; paragraphStyle.alignment = NSTextAlignmentCenter; label.attributedText = [[NSAttributedString alloc] initWithString:cell.EventTitle.text attributes:@{NSForegroundColorAttributeName : [UIColor whiteColor],NSParagraphStyleAttributeName:paragraphStyle,NSBaselineOffsetAttributeName : @0,NSFontAttributeName : [UIFont fontWithName:@"BrandonGrotesque-Black" size:34]}];


4
具有两个不同字体大小的NSAttributedString示例?
NSAttributedString 对我来说真的很坚不可摧。 我希望将a设置UILabel为具有不同大小的文本,并且我NSAttributedString想走这条路,但是关于此文档我什么也收不了。 如果有人可以帮助我举一个具体的例子,我会喜欢的。 例如,假设我想要的文本是: (in small letters:) "Presenting The Great..." (in huge letters:) "HULK HOGAN!" 有人可以告诉我该怎么做吗?甚至是我可以自己学习的简单明了的参考书?我发誓我已经尝试通过文档,甚至通过Stack Overflow上的其他示例来理解这一点,但我只是没有理解。

5
更改NSMutableAttributedString中链接的颜色
我有以下代码,但链接始终为蓝色。我如何才能改变它们的颜色? [_string addAttribute:NSLinkAttributeName value:tag range:NSMakeRange(position, length)]; [_string addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:(12.0)] range:NSMakeRange(position, length)]; [_string addAttribute:NSStrokeColorAttributeName value:[UIColor greenColor] range:NSMakeRange(position, length)]; _string是NSMutableAttributedString,并且位置和长度正常。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.