views:

123

answers:

2

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?

+4  A: 

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?

Stephen Darlington
+1  A: 

you can show a modal view

CiNN