0

I start doing some things on multiple threads and I want to disable the UI while the new thread is working so that the user doesn't accidentally launch a duplicate. Is there a good way to do this?

RexOnRoids
  • 14,002
  • 33
  • 96
  • 136

2 Answers2

4

You can enable/disable controls using the enable property but what you really want is transparent overlay and a "Processing" message. That's answered here: How to display a progress indicator overlay/HUD on iPhone?

Community
  • 1
  • 1
Stephen Darlington
  • 51,577
  • 12
  • 107
  • 152
1

you can show a modal view

CiNN
  • 9,752
  • 6
  • 44
  • 57