1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- //
- // JXSegmentedIndicatorBackgroundView.swift
- // JXSegmentedView
- //
- // Created by jiaxin on 2018/12/28.
- // Copyright © 2018 jiaxin. All rights reserved.
- //
- import UIKit
- /// 不支持indicatorPosition、verticalOffset。默认垂直居中。
- open class JXSegmentedIndicatorBackgroundView: JXSegmentedIndicatorBaseView {
- @available(*, deprecated, renamed: "indicatorWidthIncrement")
- open var backgroundWidthIncrement: CGFloat = 20 {
- didSet {
- indicatorWidthIncrement = backgroundWidthIncrement
- }
- }
- open override func commonInit() {
- super.commonInit()
- indicatorWidthIncrement = 20
- indicatorHeight = 26
- indicatorColor = .lightGray
- indicatorPosition = .center
- verticalOffset = 0
- }
- open override func refreshIndicatorState(model: JXSegmentedIndicatorSelectedParams) {
- super.refreshIndicatorState(model: model)
- backgroundColor = indicatorColor
- layer.cornerRadius = getIndicatorCornerRadius(itemFrame: model.currentSelectedItemFrame)
- let width = getIndicatorWidth(itemFrame: model.currentSelectedItemFrame, itemContentWidth: model.currentItemContentWidth)
- let height = getIndicatorHeight(itemFrame: model.currentSelectedItemFrame)
- let x = model.currentSelectedItemFrame.origin.x + (model.currentSelectedItemFrame.size.width - width)/2
- var y: CGFloat = 0
- switch indicatorPosition {
- case .top:
- y = verticalOffset
- case .bottom:
- y = model.currentSelectedItemFrame.size.height - height - verticalOffset
- case .center:
- y = (model.currentSelectedItemFrame.size.height - height)/2 + verticalOffset
- }
- frame = CGRect(x: x, y: y, width: width, height: height)
- }
- open override func contentScrollViewDidScroll(model: JXSegmentedIndicatorTransitionParams) {
- super.contentScrollViewDidScroll(model: model)
- guard canHandleTransition(model: model) else {
- return
- }
- let rightItemFrame = model.rightItemFrame
- let leftItemFrame = model.leftItemFrame
- let percent = model.percent
- var targetWidth = getIndicatorWidth(itemFrame: leftItemFrame, itemContentWidth: model.leftItemContentWidth)
- let leftWidth = targetWidth
- let rightWidth = getIndicatorWidth(itemFrame: rightItemFrame, itemContentWidth: model.rightItemContentWidth)
- let leftX = leftItemFrame.origin.x + (leftItemFrame.size.width - leftWidth)/2
- let rightX = rightItemFrame.origin.x + (rightItemFrame.size.width - rightWidth)/2
- let targetX = JXSegmentedViewTool.interpolate(from: leftX, to: rightX, percent: CGFloat(percent))
- if indicatorWidth == JXSegmentedViewAutomaticDimension {
- targetWidth = JXSegmentedViewTool.interpolate(from: leftWidth, to: rightWidth, percent: CGFloat(percent))
- }
- self.frame.origin.x = targetX
- self.frame.size.width = targetWidth
- }
- open override func selectItem(model: JXSegmentedIndicatorSelectedParams) {
- super.selectItem(model: model)
- let width = getIndicatorWidth(itemFrame: model.currentSelectedItemFrame, itemContentWidth: model.currentItemContentWidth)
- var toFrame = self.frame
- toFrame.origin.x = model.currentSelectedItemFrame.origin.x + (model.currentSelectedItemFrame.size.width - width)/2
- toFrame.size.width = width
- if canSelectedWithAnimation(model: model) {
- UIView.animate(withDuration: scrollAnimationDuration, delay: 0, options: .curveEaseOut, animations: {
- self.frame = toFrame
- }) { (_) in
- }
- }else {
- frame = toFrame
- }
- }
- }
|