XCode 6.3 Swift可转换错误

时间:2015-04-12 21:39:57

标签: ios xcode swift

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!'

1 个答案:

答案 0 :(得分:0)

这是1.2中最常见的变化,垂头丧气需要!。

有一个转换器可以修复它,在这里:

enter image description here

或使用快速修复,但这是一个不必要的麻烦。