Tonight I've been battling with UIResponder. Here's my predicament.

If I put in

-(BOOL)canBecomeFirstResponder{
return YES;

}

to my mainViewController then I can get shake events..

-(void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{

if (event.type == UIEventSubtypeMotionShake) {
     /do something }}

However, this means that when I call things like mail forms and webviews, the keyboard does not show up.

Is there any way I can get both shakes working and keyboard working in modal views?

I've tried adding [self resignFirstResponder]; in -viewDidDissapear, which gets called when a modal pops over, but no luck.

Cheers

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I had the same problem with iOS < 5.0, shake event and showing a mail form. You have to resign the first responder before the new modal view controller is being presented.

link|improve this answer
I've tried adding [self resignFirstResponder]; in -viewDidDissapear, which gets called when a modal pops over, but no luck. – Sam Jarman Jul 5 '11 at 11:01
Seems viewDidDissapear is too late! Good to know. Horrible to know at the same time. – Sam Jarman Jul 5 '11 at 11:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.