FFCircularProgressView alternatives and similar libraries
Based on the "Activity Indicator" category.
Alternatively, view FFCircularProgressView alternatives based on common mentions on social networks and blogs.
-
SVProgressHUD
A clean and lightweight progress HUD for your iOS and tvOS app. -
SkeletonView
☠️ An elegant way to show users that something is happening and also prepare them to which contents they are awaiting -
NVActivityIndicatorView
A collection of awesome loading animations -
NJKWebViewProgress
UIWebView progress interface -
M13ProgressSuite
A suite containing many tools to display progress information on iOS. -
PKHUD
A Swift based reimplementation of the Apple HUD (Volume, Ringer, Rotation,…) for iOS 8. -
ProgressHUD
ProgressHUD is a lightweight and easy-to-use HUD for iOS. -
MRProgress
Collection of iOS drop-in components to visualize progress -
DACircularProgress
DACircularProgress is a UIView subclass with circular UIProgressView properties. -
SwiftSpinner
A beautiful activity indicator and modal alert written in Swift (originally developed for my app DoodleDoodle) Using blur effects, translucency, flat and bold design - all iOS 8 latest and greatest -
FillableLoaders
Completely customizable progress based loaders drawn using custom CGPaths written in Swift -
TKRubberIndicator
A rubber animation pagecontrol -
MKRingProgressView
⭕️ Ring progress view similar to Activity app on Apple Watch -
YLProgressBar
UIProgressView replacement with an highly and fully customizable animated progress bar in pure Core Graphics -
LiquidLoader
Spinner loader components with liquid animation -
KDCircularProgress
A circular progress view with gradients written in Swift -
MBCircularProgressBar
A circular, animatable & highly customizable progress bar from the Interface Builder (Objective-C) -
PageControls
This is a selection of custom page controls to replace UIPageControl, inspired by a dribbble found here: https://dribbble.com/shots/2578447-Page-Control-Indicator-Transitions-Collection -
Windless
Windless makes it easy to implement invisible layout loading view. -
StackViewController
A controller that uses a UIStackView and view controller composition to display content in a list -
ParticlesLoadingView
A customizable SpriteKit particles animation on the border of a view. -
GradientLoadingBar
⌛️A customizable animated gradient loading bar. -
AlamofireNetworkActivityIndicator
Controls the visibility of the network activity indicator on iOS using Alamofire. -
Skeleton
💀 An easy way to create sliding CAGradientLayer animations! Works great for creating skeleton screens for loading content. -
EZLoadingActivity
:hatching_chick: Lightweight Swift loading activity for iOS7+ -
WSProgressHUD
This is a beauful hud view for iPhone & iPad -
FlexibleSteppedProgressBar
Flexible Stepped Progress Bar for IOS -
iOS-CircleProgressView
CircleProgressView -
GearRefreshControl
A custom animation for the UIRefreshControl -
iOS Circle Progress Bar
iOS Circle Progress Bar -
GradientProgressBar
📊 A customizable gradient progress bar (UIProgressView). -
RSLoadingView
Awesome loading animations using 3D engine written with Swift -
BigBrother
Automatically sets the network activity indicator for any performed request. -
DSGradientProgressView
A simple animated progress bar in Swift -
StepProgressView
Step-by-step progress view with labels and shapes. A good replacement for UIActivityIndicatorView and UIProgressView. -
Hexacon
A fancy hexagonal layout for displaying data like your Apple Watch -
RPCircularProgress
Circular progress UIView subclass with UIProgressView properties -
AudioIndicatorBars
AIB indicates for your app users which audio is playing. Just like the Podcasts app. -
SnapTimer
Implementation of Snapchat's stories timer. -
IHProgressHUD
A clean and lightweight progress HUD based on SVProgressHUD, converted to Swift with the help of Swiftify. -
KYNavigationProgress
Simple extension of UINavigationController to display progress on the UINavigationBar. -
RHPlaceholder
Show pleasant loading view for your users 😍 -
RPLoadingAnimation
Loading animations :cyclone: by using Swift CALayer -
LinearProgressBar
A simple Linear Progress Bar for IOS (Swift 3.0), inspired by Material Design -
StatusBarOverlay
StatusBarOverlay will automatically show a "No Internet Connection" bar when your app loses connection, and hide it again. It supports apps which hide the status bar and The Notch -
JDBreaksLoading
You can easily start up a little breaking game by one line.
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of FFCircularProgressView or a related project?
README
FFCircularProgressView 
FFCircularProgressView - An iOS 7-inspired blue circular progress view
This progress view is inspired by the new progress view in the App Store, iOS 7. Also the colors are taken from there.
See it in action
Requirements
FFCircularProgressView works on iOS version > 5 and is compatible with both ARC and non-ARC projects. It depends on the following Apple frameworks, which should already be included with most Xcode templates:
- Foundation.framework
- UIKit.framework
- CoreGraphics.framework
- QuartzCore.framework
You will need LLVM 3.0 or later in order to build FFCircularProgressView.
Adding FFCircularProgressView to your project
There are plenty of ways to add this view to your project. Make sure you add the aforementioned frameworks to your project as well.
GIT submodule
You have the canonical git submodule
option. Simply issue git submodule add https://github.com/elbryan/FFCircularProgressView.git <path>
in your root folder of your repository.
CocoaPods
- Add a pod entry to your Podfile dependencies file such as
pod 'FFCircularProgressView', '>= 0.1'
. - Install the pod(s) by running
pod install
. - Import the progress view with `#import "FFCircularProgressView.h" wherever you need in your project.
Source files
Manually add the source files to your project. The files you need are 'FFCircularProgressView.h', 'FFCircularProgressView.m', 'UIColor+iOS7.h', 'UIColor+iOS7.m'.
Usage
Just use it as it is a normal UIProgressView. Make sure you set the progress value in the main thread ;)
double delayInSeconds = 2.0;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND,0), ^{
for (float i=0; i<1.1; i+=0.01F) {
dispatch_async(dispatch_get_main_queue(), ^{
[circularProgressView setProgress:i];
});
usleep(10000);
}
});
});
You can also control the progress view spin animation by using the following two methods to start and stop the spinning, respectively:
// Start spinning
[circularProgressView startSpinProgressBackgroundLayer];
// Stop spinning
[circularProgressView stopSpinProgressBackgroundLayer];
Acknowledgments
The code to draw the tick has been adapted from GSProgressView.
License
This code is distributed under the terms and conditions of the [MIT license](LICENSE).
Attributions
I do not demand to be mentioned in your apps nor to receive any kind of compensation if you use this code. Yet, I would like to have feedbacks if you use it and you like it.
Follow me on Twitter: @elbryanlos
Third Party Bindings
Android
Are you an Android developer and you love this progress view? No problem! A couple of folks ported it to Android OS and you can get it here.
React Native
You may now use this library with React Native via the module here
Thank you guys!
*Note that all licence references and agreements mentioned in the FFCircularProgressView README section above
are relevant to that project's source code only.