Skip to content

Commit

Permalink
public 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
박길호 committed Oct 31, 2022
1 parent d3ff721 commit 76f8369
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/EasyConstraints/EasyConstraints.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1400,7 +1400,7 @@ extension UIView {
return obj as AnyObject
}

var viewDidAppearIsVisible: Bool? {
public var viewDidAppearIsVisible: Bool? {
get {
return objc_getAssociatedObject(self, &ViewDidAppearCADisplayLinkKeys.viewDidAppearIsVisible) as? Bool
}
Expand Down Expand Up @@ -1437,7 +1437,7 @@ extension UIView {
}
}

var impressionCheck: CGFloat { // (0.01 ~ 1) default 0.5
public var impressionCheck: CGFloat { // (0.01 ~ 1) default 0.5
get {
return objc_getAssociatedObject(self, &ViewDidAppearCADisplayLinkKeys.impressionCheck) as? CGFloat ?? 0.5
}
Expand All @@ -1446,7 +1446,7 @@ extension UIView {
}
}

var impressionLogIsVisible: Bool? {
public var impressionLogIsVisible: Bool? {
get {
return objc_getAssociatedObject(self, &ViewDidAppearCADisplayLinkKeys.impressionLogIsVisible) as? Bool
}
Expand Down

0 comments on commit 76f8369

Please sign in to comment.