メソッドを使用してNSString
aを描画できます。CustomView
drawAtPoint
NSString *text = @"text";
NSSize textSize = [text sizeWithAttributes:xlabelSet]; //receive the text size
NSPoint p = NSMakePoint(length - textSize.width/2 , wcszero_y - 20); //define text position considering the text center
[text drawAtPoint:p withAttributes:xlabelSet]; //draw text at position
同じ位置でテキストを 90 度回転するにはどうすればよいですか? これまでに見つけたのは、定義された位置でテキストを実際に回転させることではありませんでした。