【问题标题】:UIView Animation in SKSceneSKScene 中的 UIView 动画
【发布时间】:2014-03-22 10:28:51
【问题描述】:

UIView 动画在 SKScene 中不起作用

MyScene.h

@property (nonatomic) SKLabelNode *tutorialLabel;

MyScene.m

- (IBAction)hideLabel:(id)sender {
    [UIView animateWithDuration:1 animations:^(void) {
        [_tutorialLabel setAlpha:0.0];
    }];
}

有没有更好的方法来隐藏 SKLabelNode

【问题讨论】:

    标签: objective-c sprite-kit


    【解决方案1】:

    如果要淡出标签,可以使用SKActions:

    - (IBAction)hideLabel:(id)sender {
        [_tutorialLabel runAction:[SKAction fadeOutWithDuration:1.0f]];
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2018-10-13
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多