All Projects → YahyaBagia → InstagramActivityIndicator

YahyaBagia / InstagramActivityIndicator

Licence: MIT license
Activity Indicator similar to Instagram's

Programming Languages

objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to InstagramActivityIndicator

Jtmaterialspinner
An iOS material design spinner view
Stars: ✭ 127 (+159.18%)
Mutual labels:  loader, spinner
Vue Element Loading
⏳ Loading inside a container or full screen for Vue.js
Stars: ✭ 234 (+377.55%)
Mutual labels:  loader, spinner
Ng Block Ui
Block UI Loader/Spinner for Angular
Stars: ✭ 135 (+175.51%)
Mutual labels:  loader, spinner
Materialactivityindicator
Material Activity Indicator
Stars: ✭ 109 (+122.45%)
Mutual labels:  loader, spinner
Rhplaceholder
Show pleasant loading view for your users 😍
Stars: ✭ 238 (+385.71%)
Mutual labels:  instagram, loader
Swiftloader
A simple and beautiful activity indicator written in Swift
Stars: ✭ 116 (+136.73%)
Mutual labels:  loader, spinner
React Loading Overlay
Loading overlays with fade, spinner, message support.
Stars: ✭ 218 (+344.9%)
Mutual labels:  loader, spinner
Vue Loading Overlay
Vue.js component for full screen loading indicator 🌀
Stars: ✭ 784 (+1500%)
Mutual labels:  loader, spinner
Instagramactivityindicator
Activity Indicator similar to Instagram's.
Stars: ✭ 138 (+181.63%)
Mutual labels:  instagram, spinner
Text Spinners
Pure text, CSS only, font independent, inline loading indicators
Stars: ✭ 2,728 (+5467.35%)
Mutual labels:  loader, spinner
Csspin
CSS Spinners and Loaders - Modular, Customizable and Single HTML Element Code for Pure CSS Loader and Spinner
Stars: ✭ 1,019 (+1979.59%)
Mutual labels:  loader, spinner
loading
Laravel package to add loading indicator to pages while page is loading.
Stars: ✭ 38 (-22.45%)
Mutual labels:  loader, spinner
Css Spinner
small, elegant pure css spinner for ajax or loading animation
Stars: ✭ 1,013 (+1967.35%)
Mutual labels:  loader, spinner
Vue Loaders
Vue + loaders.css
Stars: ✭ 127 (+159.18%)
Mutual labels:  loader, spinner
Aframe Preloader Component
A preloading bar that automatically displays while scene assets load.
Stars: ✭ 27 (-44.9%)
Mutual labels:  loader, spinner
Vue Wait
Complex Loader and Progress Management for Vue/Vuex and Nuxt Applications
Stars: ✭ 1,869 (+3714.29%)
Mutual labels:  loader, spinner
Spinkit Objc
UIKit port of SpinKit
Stars: ✭ 743 (+1416.33%)
Mutual labels:  loader, spinner
Whirl
CSS loading animations with minimal effort!
Stars: ✭ 774 (+1479.59%)
Mutual labels:  loader, spinner
Spinners React
Lightweight SVG/CSS spinners for React
Stars: ✭ 254 (+418.37%)
Mutual labels:  loader, spinner
Swiftui Animation
SwiftUI Animation
Stars: ✭ 233 (+375.51%)
Mutual labels:  instagram, spinner

InstagramActivityIndicator (ObjC)

Activity Indicator similar to Instagram's. It is an Objective-C port of InstagramActivityIndicator.

Screenshot

Installation

Copy InstagramActivityIndicator.h & InstagramActivityIndicator.m files into XCode Project.

Usage / Installation

1. Using Interface Builder

  • Add a UIView on XIB / Storyboard from Interface Builder and change its class from UIView to InstagramActivityIndicator.

  • Customize its properties through Attribute Inspector.

2. Via Code

InstagramActivityIndicator *indicator = [[InstagramActivityIndicator alloc]initWithFrame:CGRectMake(0, 0, 70, 70)];
indicator.lineWidth = 3;
indicator.strokeColor = [UIColor brownColor];
indicator.numSegments = 15;
indicator.rotationDuration = 10;
indicator.animationDuration = 1.0;
indicator.center = self.view.center;
[self.view addSubview:indicator];
[indicator startAnimating];

Requirements

iOS 7.0+

License

MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].