Coder Social home page Coder Social logo

mumer92 / ahdownloadbutton Goto Github PK

View Code? Open in Web Editor NEW

This project forked from amerhukic/ahdownloadbutton

0.0 1.0 0.0 287 KB

Customizable download button with progress and transition animations. It is based on Apple's App Store download button.

Home Page: https://www.amerhukic.com/replicating-app-store-download-button

License: MIT License

Ruby 2.25% Swift 97.75%

ahdownloadbutton's Introduction

Logo

Pod Version Carthage compatible License Twitter: @hukicamer

AHDownloadButton is a customizable download button similar to the download button in the latest version of Apple's App Store app (since iOS 11). It features download progress animation as well as animated transitions between download states: start download, pending, downloading and downloaded. You can find more details about the implementation on my blog.

Requirements

  • iOS 8.0+
  • Xcode 10.2
  • Swift 5.0

Usage

Code

To use AHDownloadButton in code, you simply create a new instance and add it as a subview to your desired view:

  let downloadButton = AHDownloadButton()
  downloadButton.frame = CGRect(origin: origin, size: size)
  view.addSubview(downloadButton)

The button can have 4 different states:

  • startDownload - initial state before downloading
  • pending - state for preparing for download
  • downloading - state when the user is downloading
  • downloaded - state when the user finished downloading

The state of the button can be changed through its state property.

Delegate

You can use the AHDownloadButtonDelegate to monitor taps on the button and update button's state if needed. To update the current download progress, use the progress property. Here is an example how it could be implemented:

extension DownloadViewController: AHDownloadButtonDelegate {

    func downloadButton(_ downloadButton: AHDownloadButton, tappedWithState state: AHDownloadButton.State)
        switch state {
        case .startDownload:

            // set the download progress to 0
            downloadButton.progress = 0

            // change state to pending and wait for download to start
            downloadButton.state = .pending

            // initiate download and update state to .downloading
            startDownloadingFile()

        case .pending:

            // button tapped while in pending state
            break

        case .downloading:

            // button tapped while in downloading state - stop downloading
            downloadButton.progress = 0
            downloadButton.state = .startDownload

        case .downloaded:

            // file is downloaded and can be opened
            openDownloadedFile()

        }
    }
}

You can also use closures instead of the AHDownloadButtonDelegate by setting the didTapDownloadButtonAction and downloadButtonStateChangedAction properties.

Customisation

AHDownloadButton can be customized. These are the properties that can be used for customizing the button:

  1. Use the custom initializer init(alignment: HorizontalAlignment) to set the horizontal alignment property. HorizontalAlignment determines the position of the pending and downloading circles. The position can either be center , left or right. The default value is center.

  2. Customization properties when button is in startDownload state:

  • startDownloadButtonTitle - button's title
  • startDownloadButtonTitleFont - button's title font
  • startDownloadButtonTitleSidePadding - padding for left and right side of button's title
  • startDownloadButtonHighlightedBackgroundColor - background color for the button when it's in highlighted state (when the user presses the button)
  • startDownloadButtonNonhighlightedBackgroundColor - background color for the button when it's in nonhighlighted state (when the button is not pressed)
  • startDownloadButtonHighlightedTitleColor - title color for the button when it's in highlighted state (when the user presses the button)
  • startDownloadButtonNonhighlightedTitleColor - title color for the button when it's in nonhighlighted state (when the button is not pressed)
  1. Customization properties when button is in pending state:
  • pendingCircleColor - color of the pending circle
  • pendingCircleLineWidth - width of the pending circle
  1. Customization properties when button is in downloading state:
  • downloadingButtonHighlightedTrackCircleColor - color for the track circle when it's in highlighted state (when the user presses the button)
  • downloadingButtonNonhighlightedTrackCircleColor - color for the track circle when it's in nonhighlighted state (when the button is not pressed)
  • downloadingButtonHighlightedProgressCircleColor - color for the progress circle when it's in highlighted state (when the user presses the button)
  • downloadingButtonNonhighlightedProgressCircleColor - color for the progress circle when it's in nonhighlighted state (when the button is not pressed)
  • downloadingButtonHighlightedStopViewColor - color for the stop view in the middle of the progress circle when it's in highlighted state (when the user presses the button)
  • downloadingButtonNonhighlightedStopViewColor - color for the stop view in the middle of the progress circle when it's in nonhighlighted state (when the button is not pressed)
  • downloadingButtonCircleLineWidth - width of the downloading circle
  1. Customization properties when button is in downloaded state:
  • downloadedButtonTitle - button's title
  • downloadedButtonTitleFont - button's title font
  • downloadedButtonTitleSidePadding - padding for left and right side of button's title
  • downloadedButtonHighlightedBackgroundColor - background color for the button when it's in highlighted state (when the user presses the button)
  • downloadedButtonNonhighlightedBackgroundColor - background color for the button when it's in nonhighlighted state (when the button is not pressed)
  • downloadedButtonHighlightedTitleColor - title color for the button when it's in highlighted state (when the user presses the button)
  • downloadedButtonNonhighlightedTitleColor - title color for the button when it's in nonhighlighted state (when the button is not pressed)
  1. transitionAnimationDuration - animation duration between the different states of the button

Special note

AHDownloadButton in startDownload and downloaded states calculates its width based on button title. Use the startDownloadButtonTitleSidePadding and downloadedButtonTitleSidePadding properties to customise the width when the button is in the aforementioned states.

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate AHDownloadButton into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

target '<Your Target Name>' do
    pod 'AHDownloadButton'
end

Then, run the following command:

$ pod install

Author

Amer Hukić

License

AHDownloadButton is licensed under the MIT license. Check the LICENSE file for details.

ahdownloadbutton's People

Contributors

amerhukic avatar av0c0der avatar fabiotacke avatar fetzig avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.