Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 805
Abdalrahman Shatou Avatar asked Nov 28 '12 06:11

Abdalrahman Shatou


1 Answers

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.

like image 175
Adil Soomro Avatar answered Sep 20 '22 18:09

Adil Soomro