Skip to content

Commit

Permalink
[Chore/#123] 접근제어자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoe0929 committed Jan 19, 2024
1 parent 66d59ff commit 8caf70d
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ final class AppListCollectionViewCell: UICollectionViewCell {
}
}

private let appImageView = UIImageView().then {
var appImageView = UIImageView().then {
$0.backgroundColor = .blue
$0.makeCornerRound(radius: 8.adjusted)
}
Expand Down Expand Up @@ -92,9 +92,8 @@ final class AppListCollectionViewCell: UICollectionViewCell {
contentView.makeCornerRound(radius: 6.adjusted)
}

func configureCell(appName: String, appIconImage: UIImage = UIImage(), appTime: String){
func configureCell(appName: String, appTime: String){
self.appNameLabel.text = appName
self.appImageView.image = appIconImage
self.timeLabel.text = appTime
}
}

0 comments on commit 8caf70d

Please sign in to comment.