1

我正在使用 UITextView 并希望更改文本片段的角度,如下图所述。

当前结果显示了我的实际方式:

frameText.layer.transform = CATransform3DMakeRotation(DEGREES_TO_RADIANS(angle), 0, 0, 1);

在此处输入图像描述

正如 Ray Wenderlich 在他的Text Kit 教程中所描述的那样, TextView 被分成几个类:

在此处输入图像描述

我知道,可以在自定义中定义文本片段的大小和位置,NSTextContainer例如使用

(CGRect)lineFragmentRectForProposedRect:(CGRect)proposedRect atIndex:(NSUInteger)characterIndex writingDirection:(NSWritingDirection)baseWritingDirection remainingRect:(CGRect *)remainingRect {...}方法。

但我找不到直接旋转文本片段的方法。 有谁知道如何实现这一目标?

4

0 回答 0