Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SKAction を使用して SKLabelNode のテキスト プロパティを変更する方法はありますか? Swift での回答を希望しますが、Objective C で十分です。ありがとう
ブロックを使った作品
SKAction *changeTextAction = [SKAction runBlock:^(void){[self.someLabel setText:@"some string"];}];
次に、アクションを実行するだけです
[self runAction:changeTextAction];