Skip to content

Commit

Permalink
Refactor [#269] 내 프로필 메인 고차함수로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
chaentopia committed Oct 25, 2023
1 parent 414cf2f commit 50a5933
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,10 @@ extension MyFriendSkeletonTableViewCell {
}

func showShimmer() {
self.profileImageView.animateShimmer()
self.nameLabel.animateShimmer()
self.schoolLabel.animateShimmer()
let shimmerArray = [profileImageView, nameLabel, schoolLabel]

shimmerArray.forEach {
$0.animateShimmer()
}
}
}

0 comments on commit 50a5933

Please sign in to comment.