如何设置SKLabelNode的字体大小以适合固定大小(Swift)

如何设置SKLabelNode的字体大小以适合固定大小(Swift),第1张

概述我有一个方块(200X200),里面有一个SKLabelNode.标签显示得分,我将达到大量.我想要在广场上的数字. 如何更改SKLabelNode的文本大小(或大小)以使其适合固定大小. 可以将SKLabelNode的框架的大小与给定的矩形进行比较.如果按照标签的矩形和所需的矩形的大小成比例缩放字体,则可以确定尽可能多填充空间的最佳字体大小.最后一行方便地将标签移动到矩形的中心. (如果文本只是 我有一个方块(200X200),里面有一个SKLabelNode.标签显示得分,我将达到大量.我想要在广场上的数字.

如何更改SKLabelNode的文本大小(或大小)以使其适合固定大小.

可以将SKLabelNode的框架的大小与给定的矩形进行比较.如果按照标签的矩形和所需的矩形的大小成比例缩放字体,则可以确定尽可能多填充空间的最佳字体大小.最后一行方便地将标签移动到矩形的中心. (如果文本只是小写字母或标点符号的短字符,则可能会偏离中心).

迅速

func adjustLabelFontSizetoFitRect(labelNode:SKLabelNode,rect:CGRect) {    // Determine the Font scaling factor that should let the label text fit in the given rectangle.    let scalingFactor = min(rect.wIDth / labelNode.frame.wIDth,rect.height / labelNode.frame.height)    // Change the FontSize.    labelNode.FontSize *= scalingFactor    // Optionally move the SKLabelNode to the center of the rectangle.    labelNode.position = CGPoint(x: rect.mIDX,y: rect.mIDY - labelNode.frame.height / 2.0)}

Objective-C的

-(voID)adjustLabelFontSizetoFitRect:(SKLabelNode*)labelNode rect:(CGRect)rect {    // Determine the Font scaling factor that should let the label text fit in the given rectangle.    double scalingFactor = MIN(rect.size.wIDth / labelNode.frame.size.wIDth,rect.size.height / labelNode.frame.size.height);    // Change the FontSize.    labelNode.FontSize *= scalingFactor;    // Optionally move the SKLabelNode to the center of the rectangle.    labelNode.position = CGPointMake(CGRectGetMIDX(rect),CGRectGetMIDY(rect) - labelNode.frame.size.height / 2.0);}
总结

以上是内存溢出为你收集整理的如何设置SKLabelNode的字体大小以适合固定大小(Swift)全部内容,希望文章能够帮你解决如何设置SKLabelNode的字体大小以适合固定大小(Swift)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1039724.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存