我尝试像这样更改statusBar的背景
但是任何尝试都失败了,我不知道我是否使用了很好的方法。
约束是应该隐藏navigationBar而我不能这样做,而且我不知道是否因为ca而无法更改statusBar的背景。
谢谢
答案 0 :(得分:1)
我将采用this StackOverflow answer并将其改编为RubyMotion。
if UIDevice.currentDevice.systemVersion.to_f >= 7.0
view = UIView.alloc.initWithFrame([[0, 0], [320, 20]])
view.backgroundColor = UIColor.colorWithRed(0/255.0, green:0/255.0, blue:0/255.0, alpha:1.0)
self.window.rootViewController.view.addSubview(view)
end