你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> 如何實現 iOS 自定義狀態欄

如何實現 iOS 自定義狀態欄

編輯:IOS開發綜合

01 UIWindow * statusWindow = [[UIWindow alloc] initWithFrame:[UIApplication sharedApplication].statusBarFrame];

02     [statusWindow setWindowLevel:UIWindowLevelStatusBar + 1];

03     [statusWindow setBackgroundColor:[UIColor clearColor]];

04      

05     UILabel * statusLabel = [[UILabel alloc] initWithFrame:statusWindow.bounds];

06     statusLabel.text = @"RSSI:";

07     statusLabel.textColor = [UIColor blueColor];

08     statusLabel.textAlignment = NSTextAlignmentCenter;

09     statusLabel.backgroundColor = [UIColor blackColor];

10      

11     [statusWindow addSubview:statusLabel];

12      

13     [statusWindow makeKeyAndVisible];

 

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved