Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change conflicting variable name #1

Merged
merged 1 commit into from
Oct 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Source/Classes/Views/AXStackableViewContainer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ import UIKit
/// For internal use only.
var contentInset: UIEdgeInsets = .zero

@objc fileprivate(set) var anchorPoint: AXStackableViewContainerAnchorPoint
@objc fileprivate(set) var containerAnchorPoint: AXStackableViewContainerAnchorPoint
@objc enum AXStackableViewContainerAnchorPoint: Int {
case top, bottom
}

@objc(initWithViews:anchoredAtPoint:)
init(views: [UIView], anchoredAt point: AXStackableViewContainerAnchorPoint) {
self.anchorPoint = point
self.containerAnchorPoint = point
super.init(frame: .zero)
views.forEach({ self.addSubview($0) })
}
Expand All @@ -46,7 +46,7 @@ import UIKit
var constrainedInsetSize = constrainedSize
constrainedInsetSize.width -= (self.contentInset.left + self.contentInset.right)

let subviews = (self.anchorPoint == .top) ? self.subviews : self.subviews.reversed()
let subviews = (self.containerAnchorPoint == .top) ? self.subviews : self.subviews.reversed()
for subview in subviews {
let size = subview.sizeThatFits(constrainedInsetSize)
var frame: CGRect
Expand Down