Skip to content

Commit

Permalink
set up view
Browse files Browse the repository at this point in the history
  • Loading branch information
krugerk committed Nov 15, 2024
1 parent f26108e commit 336f304
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions BeeSwift/Components/GoalImageView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ class GoalImageView : UIView {
init(isThumbnail: Bool) {
self.isThumbnail = isThumbnail
super.init(frame: CGRect(x: 0, y: 0, width: 0, height: 0))
setupView()
setUpView()
}

required init?(coder: NSCoder) {
self.isThumbnail = false
super.init(coder: coder)
setupView()
setUpView()
}

private func setupView() {
private func setUpView() {
self.addSubview(imageView)
imageView.snp.makeConstraints { (make) in
make.edges.equalToSuperview()
Expand Down

0 comments on commit 336f304

Please sign in to comment.