gpt4 book ai didi

ipad - 在 NSAttributedString 上设置文本对齐方式 (CTTextAligment) - ipad

转载 作者:行者123 更新时间:2023-12-01 06:41:48 28 4
gpt4 key购买 nike

我正在尝试绘制具有颜色、字体、大小和对齐方式的自定义字符串。

我之前使用 NSMutableAttributedString 进行了所有操作,但看起来文本对齐仅适用于段落对齐,而段落对齐仅适用于 NSString 的非可变版本。

因此,我不得不将之前的代码更改为:

    //Note : _name variables are provided by my GUI for text, size and font name.

//Create the String ColorRef
CGColorSpaceRef rgb = CGColorSpaceCreateDeviceRGB();
const CGFloat myColor[] = {_color.r/255.0, _color.g/255.0, _color.b/255.0, 1.0f};
CGColorRef colorRef = CGColorCreate(rgb, myColor);

//Setup paragraph Alignment Ref
CTTextAlignment theAlignment = kCTCenterTextAlignment;
CFIndex theNumberOfSettings = 1;
CTParagraphStyleSetting theSettings[1] = {{ kCTParagraphStyleSpecifierAlignment, sizeof(CTTextAlignment), &theAlignment }};
CTParagraphStyleRef theParagraphRef = CTParagraphStyleCreate(theSettings, theNumberOfSettings);

//Prep Font
NSDictionary *fontAttributes = [NSDictionary dictionaryWithObjectsAndKeys: _fontName, (NSString *)kCTFontFamilyNameAttribute,
[NSNumber numberWithFloat:_fontSize], (NSString *)kCTFontSizeAttribute,
nil];
CTFontRef font = [self newFontWithAttributes:fontAttributes];

//Prepare String Attributes
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys: (id)font, (NSString *)kCTFontAttributeName,
[NSNumber numberWithFloat:_fontSize], (NSString *)kCTFontSizeAttribute,
(id)theParagraphRef, (NSString*)kCTParagraphStyleAttributeName,
colorRef, (NSString *)kCTForegroundColorAttributeName, nil];

//Create the Attributed String
NSAttributedString *myString = [[NSAttributedString alloc] initWithString:_textString
attributes: attributes];

但是文本对齐仍然不起作用。其他一切都很好,但文本仍然保持左对齐。

为什么?

编辑:我的每个字符串都是在一个类中创建的,该类是 CATextLayer 的子类。然后将这些 TextLayer 中的每一个作为子层添加到 CALayer 中。在更新时,我在子层上应用转换矩阵并使用 setNeedsDisplay。这就是我在屏幕上显示文本的方式。也许 CTParagraphStyleRef 集不起作用是有原因的?

最佳答案

我不知道为什么我设置的 ParagraphStyle 不起作用,但我找到了一个适合我的解决方案,所以我发布它以防有人遇到类似问题:

  • 我的类是 CATextLayer 的子类,我认为在我的问题中提及这一点很重要(不好意思,我会编辑它)。
  • 在我的 CATextLayer 类中,我使用代码创建字符串显示在我的问题中。
  • 然后我使用 self.alignmentMode = kCAAlignmentCenter; 来对齐以我想要的方式显示文本。
  • 然后将每个字符串添加到 CALAyer 中进行显示

我也找到了这个 very good guide on AttributedStrings这帮助我改进了我的代码并找到了这个解决方案。

关于ipad - 在 NSAttributedString 上设置文本对齐方式 (CTTextAligment) - ipad,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8189007/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com