Tagged Questions

1
vote
1answer
941 views

iPhone Simulator always generates two shake events? (UIScrollview not scrolling for second event)

When I select "Shake Gesture" from the Hardware menu in the iPhone simulator, my first responder always receives two shake events (with a few milliseconds in between). Unfortunately these two events ...
1
vote
1answer
1k views

Detecting when modal view has been displayed

This is a fun one... I have an application that has a help screen and is displayed as a modal view. The main view has an action that occurs when the device is shaken. I do not want the action to ...
0
votes
3answers
135 views

Why shake doesn't work when the screen is off on iPhone?

I am playing an audio file in the app, so it doesn't turn off when the phone is locked and the screen is off. However when I want detect shake it does not work. It works fine when the app is open ...
0
votes
3answers
398 views

Can't get shake events on iPhone

I am not being able to get shake events on iPhone. I have followed other questions here with no result. I also tried following the GLPaint example from Apple, but it seems exactly like my source ...
0
votes
2answers
159 views

Couldn't detect device's shakes

I'm trying to detect when the device(iPhone/iPod Touch) shakes, what I have already done (in my viewController.m) is : - (BOOL) canBecomeFirstResponder{ return YES; } . - (void) ...
0
votes
2answers
164 views

iPhone: modifying view when user shakes

I am developing an iPhone application which deletes rows from a table view when the user shakes the phone. I have created a navigation-based project. Now when the user shakes the iPhone I want the ...
0
votes
2answers
568 views

How do I prevent a specific view from responding to shake gestures?

I use shake gesture for my application but i have problem! My application is a multiview application and i want use shake gesture on the view 2. If i active shake gesture on view 2, I have to write ...