1

There is a way to stop the jsqmessagesviewcontroller activity indicator spins when video download finished? enter image description here

Tom Odell
  • 105
  • 1
  • 1
  • 11

1 Answers1

0

when you want to stop and hide indicator write this code

activityIndicator.stopAnimating()
activityIndicator.alpha = 0

and when you want to start and show indicator write this code

activityIndicator.startAnimating()
activityIndicator.alpha = 1
mahdiTGK
  • 53
  • 7