How can UIActivityIndicatorView
do not stop when the mainThread blocked?
Asked
Active
Viewed 158 times
2
1 Answers
0
I don't think you can as the view uses the main thread itself to perform the animation. If you are performing long-running processes on the main thread (e.g. network, or long computational processes) consider changing your design. E.g. use GCD, threads etc.

Ben Clayton
- 80,996
- 26
- 120
- 129