반응형
[iOS] status bar height 구하기 (상태바 높이 구하기)
아이폰의 status bar 높이를 보통 20으로 처리하는데,
해상도에 따라 다른 값을 가지고 있어서
동적으로 값을 가져와서 처리하는 방법이 정확하다.
아래 코드로 상태바 높이를 가져올 수 있다.
-(CGFloat)statusBarHeight { CGRect statusBarRect = [[UIApplication sharedApplication] statusBarFrame]; return statusBarRect.size.height; } |
반응형
'iOS > Swift + Objective-c' 카테고리의 다른 글
[objective c] custom font 사용하기 (0) | 2018.03.12 |
---|---|
[iOS: objective - c] framework & library 에서 custom font 사용하기 (0) | 2018.03.12 |
[iOS] static library에서 image 사용하기 (0) | 2017.09.05 |
[IOS] status bar text color 변경 (0) | 2017.08.11 |
[ios xcode] error: linker command failed with exit code 1 (0) | 2017.05.25 |