0

When the user clicks a UIButton, I want a HUD-like Window saying "loading" for a few seconds (maybe 5 seconds). Although my application doesn't need a loading screen (between views).

Cocoa Dev
  • 9,361
  • 31
  • 109
  • 177

2 Answers2

3

Never make the user wait for nothing. 5 seconds is an eternity.

In the interest of education and assuming you will one day need to show a loading indicator this blog may have some info you need.

http://iphonedevcentral.blogspot.com/2010/08/showing-loading-message-over-iphone.html

Chris Grant
  • 2,463
  • 23
  • 27
Gabriel
  • 18,322
  • 2
  • 37
  • 44
  • I would then advise you to rephrase the question, maybe indicate that something will take a certain amount of time and that you would like to show a loading indicator to users during that time. – Gabriel Jan 25 '11 at 02:12
0

I've just added an example using a one of my github project here to display / hide a HUD with an activity indicator :

How to display a progress indicator overlay/HUD on iPhone?

Community
  • 1
  • 1
yonel
  • 7,855
  • 2
  • 44
  • 51