Popularity
3.8
Declining
Activity
0.0
Stable
245
9
16

Code Quality Rank: L5
Programming language: Swift
License: MIT License
Tags: UI     Activity Indicator    
Latest version: v2.0.2

KYNavigationProgress alternatives and similar libraries

Based on the "Activity Indicator" category.
Alternatively, view KYNavigationProgress alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of KYNavigationProgress or a related project?

Add another 'Activity Indicator' Library

README

KYNavigationProgress

Carthage compatible Pod Version Pod Platform Pod License Swift version

KYNavigationProgress is simple extension of UINavigationController to display progress on the UINavigationBar.

image.png

Installation

CocoaPods

KYNavigationProgress is available on CocoaPods. Add the following to your Podfile:

use_frameworks!
pod 'KYNavigationProgress'

Carthage

KYNavigationProgress is available through Carthage. To install it, simply add the following line to your Cartfile:

github "ykyouhei/KYNavigationProgress"

Usage

Progress

import KYNavigationProgress

// get and set progress.
self.navigationController?.progress = 0.5

// set progress with animation.
self.navigationController?.setProgress(0.1, animated: true)

// finish progress.
self.navigationController?.finishProgress()

// cancel progress.
self.navigationController?.cancelProgress()

Custom

// default is UIColor(red: 0.0, green: 122/255, blue: 1.0, alpha: 1.0)
self.navigationController?.progressTintColor

// default is UIColor.clearColor()
self.navigationController?.trackTintColor

// default is 2.0
self.navigationController?.progressHeight

License

This code is distributed under the terms and conditions of the [MIT license](LICENSE).


*Note that all licence references and agreements mentioned in the KYNavigationProgress README section above are relevant to that project's source code only.