I am working on a project, and part of it needs to measure the rotation of the device. I assume that the most efficient way to do this would be with the gyroscope, but please correct me if I am wrong. I really have no idea where to start, so any pointers would be greatly appreciated.

Thanks,

Hersh

link|improve this question

77% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You'd have to start by including the CoreMotion framework. Then refer to the documentation for a good outline of the CMMotionManager class.

The actual implementation is very easy - implement the delegate and tell the manager that you want to start receiving notifications.

link|improve this answer
feedback

Check out Core Motion framework available in iOS starting 4.0. It provides a lot of ready stuff to work gyro and accelerometer at high level without need to work will low level data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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