There is a way to stop the jsqmessagesviewcontroller activity indicator spins when video download finished?
Asked
Active
Viewed 89 times
1

Tom Odell
- 105
- 1
- 1
- 11
1 Answers
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
-
Are you serious? – Tom Odell Apr 16 '17 at 08:59
-
You do not know what time to download it ends? – mahdiTGK Apr 16 '17 at 09:22
-
If you find a solution please post it as an answer, it can help other, thanks – Ghiggz Pikkoro Jan 06 '18 at 16:14