Skip to content

Commit

Permalink
[feat] Alert 문구 수정 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
BAEKYUJEONG committed Aug 30, 2024
1 parent b958858 commit d9a4490
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion PLUV/Home/HomeViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ extension HomeViewController {
}

@objc private func clickTransferScreenshotButton() {
AlertController(message: "추후 공개될 예정입니다!").show()
AlertController(message: "추후 공개될 예정이에요!").show()
}

/// 테스트
Expand Down
6 changes: 3 additions & 3 deletions PLUV/Move/MovePlaylistViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ class MovePlaylistViewController: UIViewController {
}
default:
DispatchQueue.main.async {
AlertController(message: "미디어 권한을 허용해야 사용할 수 있습니다.") {
AlertController(message: "미디어 권한을 허용해야 사용할 수 있어요") {
UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!)
}.show()
}
Expand Down Expand Up @@ -369,7 +369,7 @@ class MovePlaylistViewController: UIViewController {
case 201:
print(response.data, "addAppleToSpotify")
self.circleLoadingIndicator.isAnimating = false
AlertController(message: "플레이리스트가 생성되었습니다.", completion: {
AlertController(message: "플레이리스트를 옮겼어요", completion: {
self.clickXButton()
}).show()
default:
Expand Down Expand Up @@ -402,7 +402,7 @@ class MovePlaylistViewController: UIViewController {
case 201:
print(response.data, "addSpotifyToApple")
self.circleLoadingIndicator.isAnimating = false
AlertController(message: "플레이리스트가 생성되었습니다.", completion: {
AlertController(message: "플레이리스트를 옮겼어요", completion: {
self.clickXButton()
}).show()
default:
Expand Down
2 changes: 1 addition & 1 deletion PLUV/Select/SelectPlaylistViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class SelectPlaylistViewController: UIViewController {
}
default:
DispatchQueue.main.async {
AlertController(message: "미디어 권한을 허용해야 사용할 수 있습니다.") {
AlertController(message: "미디어 권한을 허용해야 사용할 수 있어요") {
UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!)
}.show()
}
Expand Down

0 comments on commit d9a4490

Please sign in to comment.