views:

42

answers:

2

I fill information then tap "Done" button for doing some process and show loading view for waiting.

I need loading view is over every view, but How can I do?

Thanks for adviser.

Here is my image (I'm new in here, so I can't post image) http://www.freeimagehosting.net/image.php?62e2584aea.png

A: 

Did you observe the UIKeyboardWillShowNotification and UIKeyboardDidShowNotification notifications? You can update the view elements in the handlers.

ohho
+1  A: 

You should make your keyboard disappear from the screen as soon as user taps on done button. call this method

[myTextField resignFirstResponder]

when you start loading

Sanniv