You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Aufree
Hello, I have 20 static cells in table view and when state == .playing and bars are animating and when I scroll down and go up bars are no longer animating and they in pause mode
iOS 8.4 has no problems with it
Any idea how can I fix this ?
Thanks!
The text was updated successfully, but these errors were encountered:
I think I fixed this... the animation gets interrupted when you scroll it out of it's window, the func willMove(toWindow: UIWindow?) will be called ,so what we should do is just resuming it animation when this method get called :
in ESTMusicIndicatorView.swift add this code:
openoverridefunc willMove(toWindow newWindow:UIWindow?){
if state ==.playing {startAnimating()}}
@Aufree
Hello, I have 20 static cells in table view and when state == .playing and bars are animating and when I scroll down and go up bars are no longer animating and they in pause mode
iOS 8.4 has no problems with it
Any idea how can I fix this ?
Thanks!
The text was updated successfully, but these errors were encountered: