Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 날짜
- 유니티
- javascript
- Linux
- Excel
- IOS
- Unity
- MySQL
- flutter
- 라즈베리파이
- ASP
- mssql
- 다이어트
- python
- MS-SQL
- 함수
- sqlite
- PyQt
- 맛집
- node.js
- PyQt5
- port
- urllib
- tensorflow
- PER
- swift
- GIT
- pandas
- 리눅스
- ubuntu
Archives
아미(아름다운미소)
Change Background Color Status Bar iOS 본문
iOS / Swift Status Bar Background Color 변경
- .plist 에 추가
- 소스에 추가
UIApplication.shared.statusBarStyle = .lightContent
UINavigationBar.appearance().clipsToBounds = true
let statusBar: UIView = UIApplication.shared.value(forKey: "statusBar") as! UIView
statusBar.backgroundColor = UIColor(red: 0.0/255.0, green: 152.0/255.0, blue: 186.0/255.0, alpha: 1.0)
'랭귀지 > SWIFT' 카테고리의 다른 글
| Swift4 UserDefaults 값 모두 초기화 하기 (0) | 2018.05.24 |
|---|---|
| Swift 4 에서 UserDefaults 사용하기 (0) | 2018.05.23 |
| UITableViewCell 선택 스타일을 사용하지 않도록 설정 (0) | 2018.05.21 |
| UITextField 또는 UITextView 문자 수를 제한하는 방법 (4) | 2018.05.20 |
| 이미지가 더 작은 경우에도 UITableViewCell의 ImageView를 고정 크기로 만드는 방법 (0) | 2018.05.18 |
Comments