我正在從ios6起兼容的應用程序。在iOS 7中狀態欄是重疊視圖和導航欄。我想要iOS 6風格的狀態欄。就像它應該出現在所有UI對象,視圖,Viewcontroller和導航控制器之上。我們怎樣才能做到這一點?StatusBar iOS7背景顏色
0
A
回答
1
爲了固定重疊的問題只是嘗試此鏈接Status bar and navigation bar issue in IOS7
,並使用類似的狀態欄風格iOS 6的這個鏈接可以幫助你Change StatusBar style
在您的應用程序委託的applicationDidFinishLaunching方法:
[[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleBlackTranslucent];
設置UIStatusBarStyleBlackTranslucent/UIStatusBarStyleBlackOpaque獲取與iOS6類似的狀態欄。
希望這可以幫助你
1
我遲到了這個答案,但我只是想分享我做什麼,這基本上是 最簡單的解決
的清一色>第一轉到您的info.plist
文件,並添加Status Bar Style->Transparent Black Style(Alpha of 0.5)
現在,這裏有雲: -
在您的AppDelegate.m中添加此代碼
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//Whatever your code goes here
if(kDeviceiPad){
//adding status bar for IOS7 ipad
if (IS_IOS7) {
UIView *addStatusBar = [[UIView alloc] init];
addStatusBar.frame = CGRectMake(0, 0, 1024, 20);
addStatusBar.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:1]; //change this to match your navigation bar
[self.window.rootViewController.view addSubview:addStatusBar];
}
}
else{
//adding status bar for IOS7 iphone
if (IS_IOS7) {
UIView *addStatusBar = [[UIView alloc] init];
addStatusBar.frame = CGRectMake(0, 0, 320, 20);
addStatusBar.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:1]; //You can give your own color pattern
[self.window.rootViewController.view addSubview:addStatusBar];
}
return YES;
}
相關問題
- 1. StatusBar背景黑色,UIAlertView背景黑色,一切都是黑色
- 2. IOS7 UINavigationBar黑色背景
- 3. 設置主題StatusBar組件的背景顏色
- 4. 背景或背景顏色?
- 5. 背景顏色
- 6. 背景顏色
- 7. 背景顏色
- 8. 背景顏色
- 9. 顏色背景
- 10. CSS3PIE背景褪色背景顏色
- 11. StatusBar顏色不變
- 12. 的DBGrid XE3背景顏色
- 13. Uipicker背景顏色
- 14. NSImageView +背景顏色
- 15. DBVisualizer背景顏色
- 16. 背景顏色,ForegroundColor
- 17. QSciScintilla背景顏色
- 18. 1背景顏色
- 19. 背景顏色行
- 20. Win32背景顏色
- 21. FieldSet背景顏色
- 22. ItemControl背景顏色
- 23. DataGridViewTextBoxEditingControl背景顏色
- 24. iframe背景顏色
- 25. Bootstrap:Div背景顏色
- 26. CSS背景顏色
- 27. 與背景顏色
- 28. ListBoxItem背景顏色
- 29. Bootstrap背景顏色
- 30. DGML背景顏色