status bar 색상 변경
2016. 9. 5. 10:54ㆍProgramming/Swift
반응형
* AppDelegate
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { // Override point for customization after application launch. UIApplication.sharedApplication().valueForKey("statusBar")?.setValue(UIColor.redColor(), forKey: "foregroundColor") return true } |
- swift 3.0
// let statWindow = UIApplication.shared.value(forKey:"statusBar") as? UIView
// if let sub = statWindow?.subviews[0] {
// let statusBar = sub as UIView
// statusBar.backgroundColor = UIColor(red: 206/255.0, green: 206/255.0, blue: 210/255.0, alpha: 1.0)
// }
//
반응형
'Programming > Swift' 카테고리의 다른 글
아이폰7(?) 발표 5시간전 apple developer 등록이 안된다 (0) | 2016.09.07 |
---|---|
xcode 자동 줄바꿈 설정 (0) | 2016.09.07 |
collectionview overlap 되는 이미지와 버튼 기기별 조정(?) (0) | 2016.09.02 |
app심사 및 itunes connect 사용법 링크 (0) | 2016.09.01 |
tabbar에서 tableview 사용시 마지막 로우가 tabbar에 가려질 때 (0) | 2016.08.30 |