iOS/UIKIT

navigation Title의 위치를 왼쪽으로 옮기는 방법?

밤새는 탐험가89 2024. 6. 30. 00:11

 

  • 아래와 같이 버튼으로 하면? 왼쪽으로 옮길 수 있다. 
let label = UILabel()
label.textColor = UIColor.label
label.font = .systemFont(ofSize: 20, weight: .bold)
label.text = "오늘은 여기 가볼까?"
self.navigationItem.leftBarButtonItem = UIBarButtonItem.init(customView: label)

 

 

  • 아래와 같이 작성하면 가운데로 온다...
navigationItem.title = "오늘은 여기 가볼까?"

'iOS > UIKIT' 카테고리의 다른 글

category 표현하기  (0) 2024.07.02
collectionView, pageControl 사용  (0) 2024.07.02
Custom TabBar 설정  (0) 2024.06.29
컬렉션 뷰 설정  (0) 2024.06.26
카카오톡 로그인 API 구현  (0) 2024.05.23