使用rubymotion更改状态栏的背景

时间:2014-01-23 21:16:32

标签: ios7 statusbar rubymotion

我尝试像这样更改statusBar的背景 enter image description here

但是任何尝试都失败了,我不知道我是否使用了很好的方法。

约束是应该隐藏navigationBar而我不能这样做,而且我不知道是否因为ca而无法更改statusBar的背景。

谢谢

1 个答案:

答案 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