Tagged Questions
97
votes
10answers
54k views
How do I detect when someone shakes an iPhone?
I want to react when somebody shakes the iPhone. I don't particularly care how they shake it, just that it was waved vigorously about for a split second. Does anyone know how to detect this?
2
votes
2answers
456 views
iPhone Shake event not properly working
I have this inside my viewController:
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {
if (event.type == UIEventSubtypeMotionShake) {
NSLog(@"I have shaked");
...
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
364 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
155 views
Shake detection with using IBuilder or Load View without IBuilder
I am writing some application (let's say game - 1 view no cocoa controls) which needs to detect shakes.
As beginner with IOS have started with default openGL template (new one). Application works.
I ...