I want to get the HVA and VVA (Horizontal View Angle and Vertical View Angle) of the Camera of an iOS device. (using Swift) How do you do this?
In Android I can use the following functions for this:
public double getHVA() {
return camera.getParameters().getHorizontalViewAngle();
}
public double getVVA() {
return camera.getParameters().getVerticalViewAngle();
}
Is there something similar for Swift?