Skip to content

Commit

Permalink
Merge pull request #53 from boostcampwm-2024/hotfix/fix-compile-error
Browse files Browse the repository at this point in the history
Color Set 이름 수정
  • Loading branch information
k2645 authored Nov 12, 2024
2 parents 82c79c7 + 72edc21 commit 7384ea4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ final class CustomAlbumViewController: UIViewController {
navigationItem.title = "사진 선택"
navigationController?.navigationBar.titleTextAttributes = [
NSAttributedString.Key.font: UIFont.ownglyphBerry(size: 17),
NSAttributedString.Key.foregroundColor: UIColor.title]
NSAttributedString.Key.foregroundColor: UIColor.mhTitle]
let closeAction = UIAction { [weak self] _ in
guard let self else { return }
self.navigationController?.popViewController(animated: true)
}
let leftBarButton = UIBarButtonItem(title: "닫기", primaryAction: closeAction)
leftBarButton.setTitleTextAttributes(
[NSAttributedString.Key.font: UIFont.ownglyphBerry(size: 17),
NSAttributedString.Key.foregroundColor: UIColor.title],
NSAttributedString.Key.foregroundColor: UIColor.mhTitle],
for: .normal
)
navigationItem.leftBarButtonItem = leftBarButton
Expand Down

0 comments on commit 7384ea4

Please sign in to comment.