1
A
답변
1
당신은 할 수 없습니다. 이를 위해 UINavigationController를 하위 클래스 화하여 고유 한 NavigationController를 작성해야합니다.
1
당신은 오프셋이 방법으로 추가 추가 할 수 있습니다
if #available(iOS 11.0, *) {
let navigationBarAppearance = UINavigationBar.appearance()
let style = NSMutableParagraphStyle()
style.alignment = .justified
style.firstLineHeadIndent = 18
navigationBarAppearance.largeTitleTextAttributes = [NSAttributedStringKey.paragraphStyle: style]
}
을