Skip to content

Commit

Permalink
Fix [#242] 추천친구 친구 추가 버튼 색상 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chaentopia committed Oct 1, 2023
1 parent 015dd66 commit 9c09ade
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ final class FriendTableViewCell: UITableViewCell {
let schoolLabel = UILabel()
lazy var addButton = UIButton()
let separatorLine = UIView()

var isTapped: Bool = false

weak var handleAddFriendButton: HandleAddFriendButton?
Expand Down Expand Up @@ -94,7 +95,7 @@ extension FriendTableViewCell {

addButton.do {
$0.setImage(ImageLiterals.Recommending.icAddFriendButton, for: .normal)
$0.tintColor = .yellow
$0.tintColor = .yelloMain500
$0.addTarget(self, action: #selector(addButtonTapped), for: .touchUpInside)
$0.isHidden = false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ final class FriendSearchTableViewCell: UITableViewCell {
updateAddButtonImage()
}
}

weak var handleSearchAddFriendButton: HandleSearchAddFriendButton?

// MARK: - Function
Expand Down Expand Up @@ -98,7 +99,7 @@ extension FriendSearchTableViewCell {

addButton.do {
$0.setImage(ImageLiterals.Recommending.icAddFriendButton, for: .normal)
$0.tintColor = .yellow
$0.tintColor = .yelloMain500
$0.addTarget(self, action: #selector(addButtonTapped), for: .touchUpInside)
}

Expand Down

0 comments on commit 9c09ade

Please sign in to comment.