Skip to content

Commit

Permalink
fix: layoutSubLayers 수정 #38
Browse files Browse the repository at this point in the history
  • Loading branch information
0gonge committed Nov 28, 2024
1 parent 5e1123e commit 191d791
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,13 @@ final class TicketDetailView: UIView {

}

override func layoutSubviews() {
super.layoutSubviews()
override func layoutSublayers(of layer: CALayer) {
super.layoutSublayers(of: layer)
addBorders(
edges: [.top, .bottom],
edges: [
.top,
.bottom
],
color: .gray200,
width: 1
)
Expand Down

0 comments on commit 191d791

Please sign in to comment.