CoreText 文本水平居中对齐
Posted
技术标签:
【中文标题】CoreText 文本水平居中对齐【英文标题】:CoreText Horizontal Center Alignment of Text 【发布时间】:2012-03-17 19:08:45 【问题描述】:我正在使用CoreText
,并且我想这样做,以便我的NSMutableAttributedString
始终居中对齐其文本。这是我正在使用的代码,但它不起作用:
CTTextAlignment paragraphAlignment = kCTCenterTextAlignment;
CTParagraphStyleSetting paragraphSettings[1] = kCTParagraphStyleSpecifierAlignment, sizeof(CTTextAlignment), ¶graphAlignment;
CTParagraphStyleRef paragraphStyle = CTParagraphStyleCreate(paragraphSettings, 1);
text = [[NSMutableAttributedString alloc] initWithString:@"" attributes:[NSDictionary dictionaryWithObjectsAndKeys: (id)paragraphStyle, (NSString*)kCTParagraphStyleAttributeName, nil]];
有人知道如何正确执行此操作吗?
【问题讨论】:
显示文本的其余代码是什么? (答案取决于您使用的例程)。 ***.com/questions/6801856/… 应该回答你的问题。 【参考方案1】:如果您的应用兼容 10.10 或更高版本,则其他不使用 CoreText 的解决方案是使用 NSParagraphStyle。
NSMutableParagraphStyle *rectStyle = NSMutableParagraphStyle.defaultParagraphStyle.mutableCopy;
rectStyle.lineBreakMode = NSLineBreakByClipping;
rectStyle.alignment = NSTextAlignmentCenter;
NSMutableAttributedString *att = [[NSMutableAttributedString alloc] initWithString:myText attributes:@NSParagraphStyleAttributeName : rectStyle];
【讨论】:
以上是关于CoreText 文本水平居中对齐的主要内容,如果未能解决你的问题,请参考以下文章