是否可以将SKLabelNode上的字体大小设置为某个动态值,以便它是最大允许值,以便显示整个文本。
答案 0 :(得分:2)
每当标签更新时,只需调用方法: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.
}