iPhone X의 상단 막대 높이는 얼마입니까?
iPhone X 상단 표시 줄의 정확한 높이를 알고 싶습니다. iPhone X의 상태 표시 줄과 탐색 표시 줄 높이를 말씀해 주시겠습니까? 도와주세요.
그러나 iPhone X의 디스플레이 는 4.7 인치 디스플레이보다 145pt 더 커서 콘텐츠를위한 추가 세로 공간이 약 20 %가됩니다.
자세한 내용 은 여기 1 및 여기 2의 애플 문서 및 세부 설명에서 iphone X 용 HIG를 얻습니다.
상태 표시 줄 높이
이전에는 20pt, 현재는 44pt
Because of the sensors on top of the display, the new status bar is split in 2 parts. If your UI is doing something special with that space (previously 20pt high, now 44pt), because it will be taller on the iPhone X. Make sure that it can be dynamically changed in height. A great thing is that the height won’t be changed if a user makes a phone call or is using a navigation app, which was previously the case on other iPhones.
portrait
Navigation bar height as normal 88 and large title time 140
- Standard title - 44pt (88pt with Status Bar)
- Large title - 140pt
- bottom bar - 34pt
Landscape
- Standard title - 32pt
- bottom bar - 21pt
Nav bar is 44pt as usual (when no large titles) and the status bar has increased from 20pt to 44pt. Here's what you can type in the debugger to verify it:
You can programmatically obtain the navigation bar's height by using safeAreaInsets
on the view
in the contained view controller:
let navBarHeight = view.safeAreaInsets.top
This will account for whether it's a large title navigation bar or not, and whether or not there's a search bar attached to it.
See the safeAreaInsets
documentation for more information.
You can simply get it in the next way (Swift 3):
let barHeight = navigationController?.navigationBar.frame.maxY
To get correct value make sure that you call it after setting prefersLargeTitles
navigationController?.navigationBar.prefersLargeTitles = false
You can use the navigation bar's .frame property to figure out the overall height of the top bar area:
ObjC:
CGRect navbarFrame = self.navigationController.navigationBar.frame;
float topWidth = navbarFrame.size.width;
float topHeight = navbarFrame.size.height + navbarFrame.origin.y;
I suppose this is a bit of a cheat, but adding the navbar's height with its y origin seems to give the correct total height regardless of device.
There is no specification in Apple Docs
According to Geoff Hackworth its 88
탐색 제목 유형 :
- 표준 제목
- 큰 제목
iOS 11에서 내비게이션 바 늘리기
navigationController?.navigationBar.prefersLargeTitles = true
시작 내용이 필요한 곳을 알고 싶다면 사용하십시오.
extension UIViewController {
var navigationBarbarContentStart: CGFloat {
return self.navigationBarTopOffset + self.navigationBarHeight
}
var navigationBarTopOffset: CGFloat {
return self.navigationController?.navigationBar.frame.origin.y ?? 0
}
var navigationBarHeight: CGFloat {
return self.navigationController?.navigationBar.frame.height ?? 0
}
}
참조 URL : https://stackoverflow.com/questions/46197660/what-is-the-top-bar-height-of-iphone-x
'Programing' 카테고리의 다른 글
Sublime2 (또는 textMate?)의 범위 목록은 어디에서 찾을 수 있습니까? (0) | 2021.01.10 |
---|---|
GIT_SSH 오류를 사용하는 사용자 지정 SSH로 Git 복제 (0) | 2021.01.10 |
HTML 5 대 XHTML 1.0 전환? (0) | 2021.01.10 |
릴리스 빌드가 디버그 빌드와 다르게 실행되는 몇 가지 이유는 무엇입니까? (0) | 2021.01.10 |
특수 목적의 3D 그래픽 계산을위한 CUDA 또는 FPGA? (0) | 2021.01.10 |