From 785fd65d590cbfded9eedfe441ffcc1ffbce46fb Mon Sep 17 00:00:00 2001 From: Chris Radford Date: Mon, 5 Aug 2013 12:47:36 +0100 Subject: [PATCH] Update to add new status bar style Added UIStatusBarStyleLightContent as an option for status_bar_style, a new option added in iOS7. --- lib/motion/project/template/ios/config.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/motion/project/template/ios/config.rb b/lib/motion/project/template/ios/config.rb index f97be4b7..eaf17ef5 100644 --- a/lib/motion/project/template/ios/config.rb +++ b/lib/motion/project/template/ios/config.rb @@ -252,6 +252,7 @@ module Motion; module Project; when :default then 'UIStatusBarStyleDefault' when :black_translucent then 'UIStatusBarStyleBlackTranslucent' when :black_opaque then 'UIStatusBarStyleBlackOpaque' + when :light_content then 'UIStatusBarStyleLightContent' else App.fail "Unknown status_bar_style value: `#{@status_bar_style}'" end