问题描述
我正在尝试以 this tutorial 为指导,使用 Phaser 3 和 Cordova 制作手机游戏。当我在浏览器中运行我的游戏时,一切正常,但是当我执行 cordova emulate ios
时,没有任何图像正确加载 - 它们都显示为绿色框。为什么 Phaser 可以在浏览器中加载图像,而在 ios 模拟器中无法加载?
解决方法
更新:我找到了解决方案!
- 安装this plugin
- 将这些标签添加到 config.xml:
let values = [
["2020-01-01",1,3,2],["2020-02-01",10,30,20],["2020-03-01",100,300,200]
]
public struct Point {
var date: String
var price: Double
}
let points: [[Point]] = values.map { pointData in
let date = pointData.first! as! String // You REALLY should parse this into a `Date`.
let prices = pointData.dropFirst()
return prices.map { Point(date: date,price: Double($0 as! Int)) }
}
points.forEach { print($0) }