SKLabelNode 使用 SKAction 更改文本

SKLabelNode change text with SKAction

有没有办法让 SKLabelNode 使用 SKAction 更改其文本 属性?我更喜欢 Swift 中的答案,但 Objective C 中的答案就足够了。谢谢

使用积木工作

SKAction *changeTextAction = [SKAction runBlock:^(void){[self.someLabel setText:@"some string"];}];

然后运行动作

[self runAction:changeTextAction];