4

是否有一组我可以指定的字符串属性,当我调用时会以一定角度绘制文本:

[label drawAtPoint:textStart withAttributes:attributes];
4

2 回答 2

11

这是一个使用变换来旋转绘图上下文的示例。本质上它就像设置颜色或阴影一样,只需确保使用-concat而不是-set.

CGFloat rotateDeg = 4.0f;
NSAffineTransform *rotate = [[NSAffineTransform alloc] init];

[rotate rotateByDegrees:rotateDeg];
[rotate concat];

// Lock focus if needed and draw strings, images here.

[rotate release];
于 2009-05-30T20:28:13.343 回答
6

NSString 本身没有旋转,但是你可以旋转上下文。就坐标空间而言,字符串将始终“水平”绘制,但对应的实际方向取决于上下文。只需根据需要使用 NSAffineTransform 旋转它。

于 2009-05-30T19:04:27.193 回答