• Stars
    star
    103
  • Rank 322,550 (Top 7 %)
  • Language
    Swift
  • License
    MIT License
  • Created about 7 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple linear progress view for iOS

Platform iOS Cocoapods Compatible Carthage Compatible License

LinearProgressView

A simple progress view for iOS

Requirements

  • iOS 8.0+
  • Xcode 8.0+
  • Swift 3.0+

Installation

CocoaPods

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

$ gem install cocoapods

To integrate LinearProgressView 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 'LinearProgressView', '~> 2.0'
end

Then, run the following command:

$ pod install

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

$ brew update
$ brew install carthage

To integrate LinearProgressView into your Xcode project using Carthage, specify it in your Cartfile:

github "BiAtoms/LinearProgressView" ~> 2.0

Run carthage update to build the framework and drag the built LinearProgressView.framework into your Xcode project.

Manually

Just drag and drop the Source/LinearProgressView.swift file.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details