123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- //
- // ESRefreshHeaderView.swift
- //
- // Created by egg swift on 16/4/7.
- // Copyright (c) 2013-2016 ESPullToRefresh (https://github.com/eggswift/pull-to-refresh)
- // Icon from http://www.iconfont.cn
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- import Foundation
- import QuartzCore
- import UIKit
- open class ESRefreshHeaderAnimator: UIView, ESRefreshProtocol, ESRefreshAnimatorProtocol, ESRefreshImpactProtocol {
- open var pullToRefreshDescription = NSLocalizedString("Pull to refresh", comment: "") {
- didSet {
- if pullToRefreshDescription != oldValue {
- titleLabel.text = pullToRefreshDescription;
- }
- }
- }
- open var releaseToRefreshDescription = NSLocalizedString("Release to refresh", comment: "")
- open var loadingDescription = NSLocalizedString("Loading...", comment: "")
- open var view: UIView { return self }
- open var insets: UIEdgeInsets = UIEdgeInsets.zero
- open var trigger: CGFloat = 60.0
- open var executeIncremental: CGFloat = 60.0
- open var state: ESRefreshViewState = .pullToRefresh
- fileprivate let imageView: UIImageView = {
- let imageView = UIImageView.init()
- let frameworkBundle = Bundle(for: ESRefreshAnimator.self)
- if /* CocoaPods static */ let path = frameworkBundle.path(forResource: "ESPullToRefresh", ofType: "bundle"),let bundle = Bundle(path: path) {
- imageView.image = UIImage(named: "icon_pull_to_refresh_arrow", in: bundle, compatibleWith: nil)
- }else if /* Carthage */ let bundle = Bundle.init(identifier: "com.eggswift.ESPullToRefresh") {
- imageView.image = UIImage(named: "icon_pull_to_refresh_arrow", in: bundle, compatibleWith: nil)
- } else if /* CocoaPods */ let bundle = Bundle.init(identifier: "org.cocoapods.ESPullToRefresh") {
- imageView.image = UIImage(named: "ESPullToRefresh.bundle/icon_pull_to_refresh_arrow", in: bundle, compatibleWith: nil)
- } else /* Manual */ {
- imageView.image = UIImage(named: "icon_pull_to_refresh_arrow")
- }
- return imageView
- }()
-
- fileprivate let titleLabel: UILabel = {
- let label = UILabel.init(frame: CGRect.zero)
- label.font = UIFont.systemFont(ofSize: 14.0)
- label.textColor = UIColor.init(white: 0.625, alpha: 1.0)
- label.textAlignment = .left
- return label
- }()
-
- fileprivate let indicatorView: UIActivityIndicatorView = {
- let indicatorView = UIActivityIndicatorView.init(style: .gray)
- indicatorView.isHidden = true
- return indicatorView
- }()
-
- public override init(frame: CGRect) {
- super.init(frame: frame)
- titleLabel.text = pullToRefreshDescription
- self.addSubview(imageView)
- self.addSubview(titleLabel)
- self.addSubview(indicatorView)
- }
-
- public required init(coder aDecoder: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
-
- open func refreshAnimationBegin(view: ESRefreshComponent) {
- indicatorView.startAnimating()
- indicatorView.isHidden = false
- imageView.isHidden = true
- titleLabel.text = loadingDescription
- imageView.transform = CGAffineTransform(rotationAngle: 0.000001 - CGFloat.pi)
- }
-
- open func refreshAnimationEnd(view: ESRefreshComponent) {
- indicatorView.stopAnimating()
- indicatorView.isHidden = true
- imageView.isHidden = false
- titleLabel.text = pullToRefreshDescription
- imageView.transform = CGAffineTransform.identity
- }
-
- open func refresh(view: ESRefreshComponent, progressDidChange progress: CGFloat) {
- // Do nothing
-
- }
-
- open func refresh(view: ESRefreshComponent, stateDidChange state: ESRefreshViewState) {
- guard self.state != state else {
- return
- }
- self.state = state
-
- switch state {
- case .refreshing, .autoRefreshing:
- titleLabel.text = loadingDescription
- self.setNeedsLayout()
- break
- case .releaseToRefresh:
- titleLabel.text = releaseToRefreshDescription
- self.setNeedsLayout()
- self.impact()
- UIView.animate(withDuration: 0.2, delay: 0.0, options: UIView.AnimationOptions(), animations: {
- [weak self] in
- self?.imageView.transform = CGAffineTransform(rotationAngle: 0.000001 - CGFloat.pi)
- }) { (animated) in }
- break
- case .pullToRefresh:
- titleLabel.text = pullToRefreshDescription
- self.setNeedsLayout()
- UIView.animate(withDuration: 0.2, delay: 0.0, options: UIView.AnimationOptions(), animations: {
- [weak self] in
- self?.imageView.transform = CGAffineTransform.identity
- }) { (animated) in }
- break
- default:
- break
- }
- }
- open override func layoutSubviews() {
- super.layoutSubviews()
- let s = self.bounds.size
- let w = s.width
- let h = s.height
-
- UIView.performWithoutAnimation {
- titleLabel.sizeToFit()
- titleLabel.center = CGPoint.init(x: w / 2.0, y: h / 2.0)
- indicatorView.center = CGPoint.init(x: titleLabel.frame.origin.x - 16.0, y: h / 2.0)
- imageView.frame = CGRect.init(x: titleLabel.frame.origin.x - 28.0, y: (h - 18.0) / 2.0, width: 18.0, height: 18.0)
- }
- }
-
- }
|