Skip to content

Commit

Permalink
[team-popo#43] setCell 함수명 renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongchoyi committed Oct 4, 2021
1 parent f4bddde commit bda5625
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class CalendarCollectionViewCell: UICollectionViewCell {
self.thumbImageView.makeRounded(radius: 5)
}

func setCell(tracker: Tracker) {
func initCell(tracker: Tracker) {

if tracker.id != -1 {
dateLabel.isHidden = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ extension CalendarViewController: UICollectionViewDataSource {
return UICollectionViewCell()
}

cell.setCell(tracker: data.tracker[indexPath.row])
cell.initCell(tracker: data.tracker[indexPath.row])

return cell
}
Expand Down

0 comments on commit bda5625

Please sign in to comment.