我的view上的Label设置了[self performSelector:@selector(HiddenLabel) withObject:nil afterDelay:delayTime];
我希望在消失了这个label后 再在view上加个动画效果
CATransition *animation = [CATransition animation];
animation有没有哪个属性是可以控制动画开始时间的
还是说要[self performSelector:@selector(StartAnimation) withObject:nil afterDelay:(delayTime+1)];? |
|