0

テキスト全体を表示できるように、SKLabelNode の fontSize を動的な値に設定して、最大許容値にすることは可能ですか。

4

1 に答える 1

2

ラベルが更新されるたびに、メソッド say を呼び出すだけ:adjustLabelです。その中で

- (void)adjustLabel{
    label.text = //Your Text;
    label.fontSize = //Your fontSize; 
    label.position = // Your position;
    // whatever attributes of the label you want to change, add them here.
}
于 2014-10-16T10:01:02.530 に答える