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

[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/1528101/

10-11 06:02