【发布时间】: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
【问题讨论】: