Since there's no invalidation operation on `Timer.scheduledTimer`, I'm wondering whether there could be a memory leak problem. ```swift Timer.scheduledTimer(withTimeInterval: animationTime, repeats: true) { (mainTimer) in self.animateSpinner() } ```
Since there's no invalidation operation on
Timer.scheduledTimer, I'm wondering whether there could be a memory leak problem.