我已经定义了
<preference name="Fullscreen" value="true"/>
但是通过Xcode进行部署却忽略了这一点。即使我在构建设置上设置了隐藏状态栏。我的所有其他config.xml设置似乎都有效,但不是这样。
答案 0 :(得分:4)
Fullscreen
无法在iOS 7及更高版本上运行。相反,您可以使用Cordova HiddenStatusbarOverlay Plugin隐藏状态栏。
隐藏它的另一种方法是使用gap:config-file元素覆盖UIViewControllerBasedStatusBarAppearance
属性:
<gap:config-file platform="ios" parent="UIViewControllerBasedStatusBarAppearance" overwrite="true">
<false/>
</gap:config-file>
答案 1 :(得分:3)
使用以下偏好标记。这对我来说很好。
model = Model1.find_by(number: 123).order('number ASC, price ASC').limit(1)