Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Color Set 이름 수정 #53

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@
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 All @@ -82,7 +82,7 @@
imagePicker.sourceType = .camera
navigationController?.show(imagePicker, sender: nil)
} else {
// TODO: - 카메라 접근 권한 Alert

Check warning on line 85 in MemorialHouse/MHPresentation/MHPresentation/Source/CustomAlbum/View/CustomAlbumViewController.swift

View workflow job for this annotation

GitHub Actions / SwiftLint

Todo Violation: TODOs should be resolved (- 카메라 접근 권한 Alert) (todo)

Check warning on line 85 in MemorialHouse/MHPresentation/MHPresentation/Source/CustomAlbum/View/CustomAlbumViewController.swift

View workflow job for this annotation

GitHub Actions / SwiftLint

Todo Violation: TODOs should be resolved (- 카메라 접근 권한 Alert) (todo)
}
}
}
Expand Down
Loading