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

Modify access control for inheritance #73

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Source/General/SegementSlideDefaultViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ open class SegementSlideDefaultViewController: SegementSlideViewController {

private let defaultSwitcherView = SegementSlideDefaultSwitcherView()

public override func segementSlideSwitcherView() -> SegementSlideSwitcherDelegate {
open override func segementSlideSwitcherView() -> SegementSlideSwitcherDelegate {
defaultSwitcherView.delegate = self
defaultSwitcherView.ssDataSource = self
return defaultSwitcherView
Expand Down Expand Up @@ -39,7 +39,7 @@ open class SegementSlideDefaultViewController: SegementSlideViewController {
}

/// reload badges in SwitcherView
public func reloadBadgeInSwitcher() {
open func reloadBadgeInSwitcher() {
defaultSwitcherView.reloadBadges()
}

Expand Down
2 changes: 1 addition & 1 deletion Source/General/SegementSlideViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ open class SegementSlideViewController: UIViewController {
internal var lastChildBouncesTranslationY: CGFloat = 0
internal var cachedChildViewControllerIndex: Set<Int> = Set()

public var headerStickyHeight: CGFloat {
open var headerStickyHeight: CGFloat {
let headerHeight = headerView.frame.height.rounded(.up)
if edgesForExtendedLayout.contains(.top) {
return headerHeight - topLayoutLength
Expand Down