gpt4 book ai didi

ios - 在 Xcode 6 Beta 4 中,SKShapeNode 不再起作用

转载 作者:搜寻专家 更新时间:2023-10-31 19:35:33 24 4
gpt4 key购买 nike

在 Xcode 6 beta 2 中它工作正常,但在 beta 4 中它不再工作了。有谁知道这个谜团的背后是什么?

let circle = SKShapeNode(circleOfRadius: 125);
circle.strokeColor = UIColor(red: 255, green: 255, blue: 255, alpha: 1.0);
circle.lineWidth = 4
self.addChild(circle);

在 beta 4 中什么都看不到。

提前感谢您的帮助。

最佳答案

这是使用模拟器时 Xcode 6 Beta 4 的常见问题。 它在使用实际设备时呈现良好See this developer forums thread .值得注意的是,在设置 circle.fillColor 仍然正确填充圆圈(或您的 SKShapeNode 绘制的任何内容)时,该问题是唯一的。

还请记住,当initializing a UIColor with RGB values RGB 值必须介于(含)0.0 和 1.0 之间。

circle.strokeColor = UIColor(red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0);

或者使用预设:

circle.strokeColor = UIColor.whiteColor()

关于ios - 在 Xcode 6 Beta 4 中,SKShapeNode 不再起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24951185/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com