2016-10-29 46 views
1

我無法弄清楚我在做下面的語法錯誤,以獲得完成運行。運行完成:序列或SKA組後

spriteWhite.run(SKAction.group([moveRight, swipeRight], 
     completion: {self.doThisFunction(withThisValue)})) 

的錯誤是:

Extra argument "completion" in call.

回答

2

嘗試改變:

spriteWhite.run(SKAction.group([moveRight, swipeRight], 
      completion: {self.doThisFunction(withThisValue)})) 

有:

spriteWhite.run(SKAction.group([moveRight, swipeRight]), 
     completion: { self.doThisFunction(withThisValue) }) 

的問題是由於語法錯誤:括號後第二個方括號關閉SKAction定義。