Reputation: 1229
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
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
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