我正在快速编写一个 spriteKit 程序,并希望在我的屏幕角落有一个分数标签,以便用户可以监控他们的分数。我有以下代码:
var scoreLabel = SKLabelNode()
.
.
.
init(size:CGSize)
{
super.init(size)
scoreLabel = SKLabelNode(fontNamed:"TechnoHideo")
scoreLabel.text = "0"
scoreLabel.fontSize = 40
scoreLabel.fontColor = UIColor.whiteColor()
scoreLabel.position = CGPointMake(200, 200)
self.addChild(scoreLabel)
}
我只在这个示例中包含了相关代码。所以这是奇怪的部分。此代码在模拟器上运行良好,但标签未显示在我的实际 iPad 上。字体是自定义字体。我将它的 ttf 文件添加到项目中,确保它处于构建阶段-> 复制捆绑资源并确保它位于 info-> 应用程序提供的字体下。关于出了什么问题的任何想法?