You can access the device rotation through the CMMotionManager which computes the radians based on raw data (accelerometer, gyro etc.). Make sure you enable the sensor updates:
if (motionMng.deviceMotionAvailable && !motionMng.deviceMotionActive) {
motionMng.deviceMotionUpdateInterval = 1.0 / 50.0;
[motionMng startDeviceMotionUpdates];
}
Afterwards access rotation – pitch(x), roll(y) and yaw(z) – by querying the attitude object:
CMDeviceMotion *motion = [motionMng deviceMotion];
if (motion != NULL) {
float pitch = motion.attitude.pitch;
float roll = motion.attitude.roll;
float yaw = motion.attitude.yaw;
NSLog(@"ROTATION: x:%f y:%f z:%f", pitch, roll, yaw);
}