13

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?

Rajneesh071
  • 30,846
  • 15
  • 61
  • 74
Abdalrahman Shatou
  • 4,550
  • 6
  • 50
  • 79

2 Answers2

22

This means, You have set Hides when stopped.

So there must be two states only,

  1. Hidden
  2. Animating

But you have set neither Hidden nor Animating.

See the image:

enter image description here

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

Adil Soomro
  • 37,609
  • 9
  • 103
  • 153
  • 3
    The wonderful world of Xcode and its non-sense decisions. This is an option that is a complete waste of time in the universe. Xcode should have 0.01% of intelligence to know that because this hidden property have another meaning on other contexts. – Duck Oct 10 '15 at 22:32
2

You have selected hide when stopped option but you are never hiding activityindicator. set you setting as in attached image

enter image description here

fibnochi
  • 1,113
  • 1
  • 9
  • 26