iOS - UIActivityIndicator causing "Hides when stopped but is neither hidden or animating" warning

ios, iphone, nib, uiactivityindicatorview, xcode

Solution

This means, You have set `Hides when stopped`.

So there must be two states only,

- Hidden

- Animating

But you have set neither Hidden nor Animating.

See the image:

It must be `Hidden` or `Animating`, If you have Checked `Hides when stopped`.

Problem

I'm getting this warning for every nib file that contains a `UIActivityIndicator`. The warning states: `Unsupported Configuration: Hides when stopped but is neither hidden or animating` What am i doing wrong?

Original source