我可以指定一组字符串属性吗,当我调用该属性时,它将以一定角度绘制文本:

[label drawAtPoint:textStart withAttributes:attributes];

最佳答案

这是一个使用变换来旋转绘图上下文的示例。本质上就像设置颜色或阴影一样,只需确保使用 -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];

关于cocoa - 如何以一定角度绘制 NSString?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/930313/

10-13 06:36