Usually when I worked with UIActivityIndicatorView in the past, I had to make it hide/show.
But now I dragged it into my screen on the storyboard, and when I run the emulator, it just shows up on the screen without spinning.
Any idea why that would happen and what I might have done wrong?
Thanks!
Do you have
hidesWhenStoppedset toNO?UIActivityIndicatorView‘s have a propertyhidesWhenStoppedwhich, by default, is set toYES– so when theUIActivityIndicatorViewis not animating, it will be hidden.Perhaps you managed to accidentally change this property to
NO?