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?
4
votes
2answers
121 views

Detecting the user's spinning motion

I have been experimenting with the Core Motion framework to detect a user spinning around, say on a merry-go-round, holding an iphone in his hand. There are ways to detect the device motion around ...
3
votes
2answers
2k views

How can you track motion using the iPhone's camera?

I saw that someone has made an app that tracks your feet using the camera, so that you can kick a virtual football on your iPhone screen. How could you do something like this? Does anyone know of ...
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
219 views

How to count steps using an Accelerometer?

I have to develop the same functionality as of this Pedometer App I have observed this Pedometer app in very high detail. It's not a perfect pedometer app. For example, if you stay/sit at one place ...
1
vote
2answers
115 views

Toggle Flashlight when Motion is detected

I'm currently working on a small project, the meaning of the project/app is that if you were to shake the device the flash ignites. If you shake it again the light turns off! The first 3/4 toggles ...
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
1answer
204 views

Jenga from Apple Source Code / Motion Detection

Hello I was watching Apple WWDC 2010 and saw Steve playing jenga... Now I am die to see what is under the hood. Is there an code sample from Apple of that game? I was looking and can't find it... ...
0
votes
1answer
562 views

How to detect Shake Gesture while application in Background?

I'm currently working on a music player app, and like the iPod application, I would like to shuffle songs with shake gesture. I'm implementing motion methods like Apple recommends to, and in ...
0
votes
1answer
962 views

Using CMDeviceMotion to track iPhone tilt over time

I'm trying to use CMDeviceMotion to track when the iPhone is tilted backwards, and then do something. I've successfully created the CMMotionManager, I'm getting motion data from the system, and I'm ...
0
votes
3answers
361 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
0answers
109 views

Debugging ignored gestures when swiping a UIScrollView (UITableView)

I'm trying to debug a ignored gestures for a UITableViewController. The use case is a user clicks on a button in one view, that pushes a UITableViewController to the top of the navigation stack, the ...
0
votes
1answer
286 views

Question about the capabilities of the iPhone accelerometer and gyroscope and which is ideal to use for this implementation

I have a game that I am working on where I am wanting to capture the movement of the device as it stays completely flat (no tilting) but is moved forward, or backward, or side to side...Ideally, this ...
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 ...
0
votes
1answer
345 views

how would I use iphone motion detection for an egg shaking-like application?

I am hoping to build an application similar to those egg shaking applications, to better understand how to detect motion on the iphone. I've been looking at accelerometer methods and motion and motion ...
-3
votes
1answer
321 views

Motion detection in iphone/android without using GPS or internet

I am trying to detect motion of iphone/android without using internet or without using gps. Firstly i am not sure as to whether this is possible and if yes how to go about it. Thanks.