Làm thế nào để tạo hoạt ảnh trả lại UIView?
Tôi có CATransition sau đây cho một UIView được gọi finalScoreView, làm cho nó vào màn hình từ trên cùng: CATransition *animation = [CATransition animation]; animation.duration = 0.2; animation.type = kCATransitionPush; animation.subtype = kCATransitionFromBottom; animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn]; [gameOver.layer addAnimation:animation forKey:@"changeTextTransition"]; [finalScoreView.layer addAnimation:animation forKey:@"changeTextTransition"]; Làm cách nào để làm cho …