user682765
user682765

Reputation: 1229

ios pressure sensor API

In android we can use Sensor TYPE_PRESSURE to measure the atmospheric pressure.

Is there any API that is available in iOS for the same purpose. How can this be achieved in iOS?

Any help appreciated

Upvotes: 3

Views: 1666

Answers (2)

Primoz990
Primoz990

Reputation: 1728

iOS 8 introduces Core Motion Framework:

Core Motion provides two new classes (CMAltimeter and CMAltitudeData) which allow you to access the barometer on the iPhone 6 and iPhone 6 Plus.

Upvotes: 2

Adam Wright
Adam Wright

Reputation: 49376

No, because no iOS device ships with a barometer. The best you could do would be find some site API that takes GPS co-ordinates and returns the current pressure at ground level there from normal weather observations.

Upvotes: 3

Related Questions