Skip to content

Commit

Permalink
[feat] Transfer titleLabel 수정 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
BAEKYUJEONG committed Aug 20, 2024
1 parent dc6a4e8 commit f07f37c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions PLUV/Platform/TransferCheckViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ class TransferCheckViewController: UIViewController {
private let checkTitleView = UIView()
private let checkTitleLabel = UILabel().then {
$0.numberOfLines = 0
$0.font = .systemFont(ofSize: 24, weight: .semibold)
$0.textColor = .gray800
}

private lazy var selectSourcePlatformView = PlatformView(platform: sourcePlatform)
Expand Down
4 changes: 3 additions & 1 deletion PLUV/Platform/TransferDestinationViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ class TransferDestinationViewController: UIViewController {
private var destinationList = Observable.just(MusicPlatform.allCases)
private let destinationTitleView = UIView()
private let destinationTitleLabel = UILabel().then {
$0.text = "어디로\n플레이리스트를 옮길까요?"
$0.numberOfLines = 0
$0.font = .systemFont(ofSize: 24, weight: .semibold)
$0.textColor = .gray800
}

private lazy var selectSourcePlatformView = PlatformView(platform: sourcePlatform)
Expand Down Expand Up @@ -56,7 +59,6 @@ extension TransferDestinationViewController {
make.leading.trailing.equalToSuperview().inset(24)
make.top.bottom.equalToSuperview().inset(28)
}
destinationTitleLabel.text = "어디로\n플레이리스트를 옮길까요?"

self.view.addSubview(selectSourcePlatformView)
selectSourcePlatformView.snp.makeConstraints { make in
Expand Down
4 changes: 3 additions & 1 deletion PLUV/Platform/TransferSourceViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ class TransferSourceViewController: UIViewController {
private let sourceList = Observable.just(MusicPlatform.allCases)
private let sourceTitleView = UIView()
private let sourceTitleLabel = UILabel().then {
$0.text = "어디에서\n플레이리스트를 불러올까요?"
$0.numberOfLines = 0
$0.font = .systemFont(ofSize: 24, weight: .semibold)
$0.textColor = .gray800
}
private let sourceTableView = UITableView().then {
$0.separatorStyle = .none
Expand Down Expand Up @@ -49,7 +52,6 @@ extension TransferSourceViewController {
make.leading.trailing.equalToSuperview().inset(24)
make.top.bottom.equalToSuperview().inset(28)
}
sourceTitleLabel.text = "어디에서\n플레이리스트를 불러올까요?"

self.view.addSubview(sourceTableView)
sourceTableView.snp.makeConstraints { make in
Expand Down

0 comments on commit f07f37c

Please sign in to comment.