您好我需要知道是否有任何方法可以找到面向地球或朝向天空的iPhone相机位置。我需要它,因为我正在研究一些概念验证。任何想法将不胜感激。提前谢谢。
答案 0 :(得分:0)
你可以采取设备方向..你有:
UIDeviceOrientationFaceUp,UIDeviceOrientationFaceDown
答案 1 :(得分:0)
您可以使用UIDevice
orientation
属性(一旦您开始生成方向通知):
[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
...后来
switch ([[UIDevice currentDevice] orientation]) {
case UIDeviceOrientationFaceDown:
// Do things
}
或者,对于更精确的通知,您可以使用Core Motion并检查attitude
属性,但这会更复杂。