XCode已经更新,并且有了新的Swift更新。
我有这段代码:
// load new tappable from file and place it on top of the screen beyond of sight
tappable05 = CCBReader.load("Tappable") as Tappable
tappable05.position = ccp(pipeSlim05.contentSize.width * 0.5,
pipeSlim05.contentSize.height * 1.03)
tappable05.scale = 1.2
//randomize tappable color
tappable05.setRandomColor()
// setup zOrder
tappable05.zOrder = DrawingOrder.DrawingOrderTappable.rawValue
// add new tappable to scene
pipeSlim05.addChild(tappable05)
我收到了这个错误:
CCNode! is not convertible to 'Tappable;' dod you mean to use 'as!'
答案 0 :(得分:0)
这是1.2中最常见的变化,垂头丧气需要!。
有一个转换器可以修复它,在这里:
或使用快速修复,但这是一个不必要的麻烦。