Skip to content

Commit

Permalink
Chore [#242] 마크 주석 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
chaentopia committed Sep 4, 2023
1 parent 826feca commit 4ff0af7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ import UIKit
class NextButton: UIButton {

// MARK: - Functions
// MARK: Layout Helpers
override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
let expandedBounds = bounds.insetBy(dx: -295.adjustedWidth, dy: -98.adjustedHeight)
return expandedBounds.contains(point)
}

// MARK: LifeCycle
override init(frame: CGRect) {
super.init(frame: frame)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ final class RecommendingSegmentedControl: UISegmentedControl {
}()

// MARK: - Function
// MARK: init
// MARK: LifeCycle
override init(frame: CGRect) {
super.init(frame: frame)
removeBackgroundAndDivider()
Expand All @@ -60,6 +60,7 @@ final class RecommendingSegmentedControl: UISegmentedControl {
// MARK: - extension
extension RecommendingSegmentedControl {

// MARK: Layout Helpers
private func setUI() {
setStyle()
setLayout()
Expand Down

0 comments on commit 4ff0af7

Please sign in to comment.