I know that the framework was introduced in iOS 4 with the gyro. But is Core Motion backward-compatible? Or I am restricted to use UIAcceleration?

Does this imply that either I can't use the gyro or can't support earlier devices?

link|improve this question

I don't understand your question. The gyro didn't exist on earlier devices, so how could you support it? – NSResponder Jul 29 '11 at 3:47
@NSResponder, the conflict is that if the app uses the gyro, it must use Core Motion, but that means the app doesn't support devices below iOS 4 – TiansHUo Jul 29 '11 at 3:57
feedback

1 Answer

up vote 2 down vote accepted

The Core Motion framework is not available on pre 4.0 devices so you should wrap all related code into a runtime check to see if the class exists which is the recommended way according to Apple.

link|improve this answer
Is there a 3rd-party library that helps me with this? I think at least there must be plenty of developers who have the same problem: no gyro or no backwards-compatibility. – TiansHUo Jul 29 '11 at 3:59
Most iOS devs are moving past iOS 3.x There is something like 2 or 3 percent of users who have not upgraded to at least iOS 4, and those users are probably moms, not gamers. – coneybeare Jul 29 '11 at 4:44
feedback

Your Answer

 
or
required, but never shown

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