이레저레 커스텀이 항상필요한 네비게이션바... 그래서 맨날 찾기..힘들어 저장해본다 // 네비게이션 바 커스텀 private func navigationBarCustome() { let addButton = UIButton(type: .system) addButton.setTitle("Add", for: .normal) addButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: 18) // 기본 폰트 사이즈 설정 addButton.setTitleColor(.white, for: .normal) // 버튼의 눌림 상태를 위한 스타일 설정 addB..