I am using the UIAccelerotmeterDelegate method accelerometer:didAccelerate: but recently that method has been deprecated in iOS 5.0. So what is the alternative way to get the accelerometer data? The documentation does not mention the alternative we are supposed to use.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
You should use the Core Motion framework (introduced in iOS 4.0) as a substitue. Create an instance of |
|||
|
|
|
It seems that UIAccelerometer and UIAccelerometerDelegate were replaced by the CoreMotion framework. You can find the answer here: Why is accelerometer:didAccelerate: deprecated in IOS5? I Hope it helps. |
|||
|
|
|
Its replaced by CoreMotion. http://developer.apple.com/library/ios/#documentation/EventHandling/Conceptual/EventHandlingiPhoneOS/MotionEvents/MotionEvents.html#//apple_ref/doc/uid/TP40009541-CH4-SW18 |
|||
|
|
