作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用新 iPhone 中的气压计传感器在设备上显示垂直速度。我最终在我的“运动”模型中得到了以下代码,它确实执行以提供或多或少适当的值。
但是,我在将 View 更新为 startRelativeAltitudeUpdatesToQueue
时遇到问题被执行。 userRelativeAltitude
的值已更新,但该函数从不返回任何内容(可能是因为它正在执行 startRelativeAltitudeUpdatesTo Queue
像循环一样工作。?)。恐怕整个声明已经在我头顶结束了。
我开始拥有更像例如的功能。 startAccelerometerUpdates
.有没有更好的方法从气压计收集数据?
另外,您如何检查设备是否有可用的气压计传感器?
- (float) pullRelativeAltitude {
self._altitudeManager = [[CMAltimeter alloc] init];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[self._altitudeManager startRelativeAltitudeUpdatesToQueue:queue withHandler:^(CMAltitudeData *altitudeData, NSError *error) {
dispatch_async(dispatch_get_main_queue(), ^ {
_userRelativeAltitude = altitudeData.relativeAltitude.floatValue;
NSLog(@"%f", altitudeData.relativeAltitude.floatValue);
});
}];
NSLog(@"This is relative altitude: %f", _userRelativeAltitude is );
return _userRelativeAltitude;
最佳答案
在 Swift 中,以下代码将检查高度是否可用:
if CMAltimeter.isRelativeAltitudeAvailable() {
// your code
}
关于ios - 从 iPhone 6 中的气压计收集相对高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25951443/
这个问题在这里已经有了答案: How to set a percentage height value in HTML/CSS (7 个答案) Doctype and Quirk modes an
这个问题在这里已经有了答案: Maintain the aspect ratio of a div with CSS (36 个回答) 1年前关闭。 我有一个 div 并将其宽度设置为 100% 因此
我是一名优秀的程序员,十分优秀!