Popularity
3.9
Stable
Activity
1.8
Growing
238
5
30

Programming language: Makefile
License: MIT License
Tags: UI     Activity Indicator    
Latest version: v0.0.6

RHPlaceholder alternatives and similar libraries

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

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

Add another 'Activity Indicator' Library

README

Build Status Version License Platform Language Twitter

RHPlaceholder ๐Ÿ’พ

Because traditional loading view like UIActivityIndicatorView or similar one are no longer so trendy (Facebook or Instagram apps are moving away from these approaches), I decided to create very simple library which will give you oportunity to have Facebook or Instagram 'view loading state' in your great project without big effort ๐Ÿ’ฅ! ๐Ÿ•

Play with it ๐Ÿ˜Ž

Installation

You can install library using Cocoapods:

pod 'RHPlaceholder'

or using Carthage:

add

github "robertherdzik/RHPlaceholder"

to your Cartfile and perform carthage update --platform iOS.

Usage

WOW... it is soo easy to use ๐Ÿ™Š! Base integration with your storyboard VC will take couple minutes ๐Ÿ’ฅ

Base Usage

just create instance const of Placeholder in your ViewController:

private let placeholderMarker = Placeholder() // By default you will have Insta like gradient animation

bear in mind, that you can choose between couple of predefined animations (like e.g. RainbowAnimatorGradient):

private let placeholderMarker = Placeholder(layerAnimator: RainbowAnimatorGradient.self)

... and then just bind up library with your views which needs to be animated:

private func addPlaceholder() {
    let viewElements: [UIView] = [
        name,
        surname,
        age,
        email,
        birthDate
    ]

    placeholderMarker.register(viewElements)
}

call addPlaceholder() method in viewDidLoad(). Boom ๐Ÿ˜ฒ library has been associated with your views ๐Ÿ‘

all what left, is to controll showing 'loading state' animation on your views using startAnimation() and remove()

func fetchUserData() {
    placeholderMarker.startAnimation()
    apiManager.fetchUser() { [weak self] user in 
        self?.placeholderMarker.remove()
        // .. rest of the method
    }
}

List of available animatotrs:

(default) InstaLayerAnimatorGradient

BackAndForthLayerAnimatorGradient BlinkAnimator RainbowAnimatorGradient

Customization

You can add your own Animators, by conforming to the LayerAnimating protocol and passing your new Animator as a param to the Placeholder init.

Swift support

Library ver Swift ver Note
0.0.3 4.1 Very early version, API may change
0.0.5 4.2 Very early version, API may change
0.0.6 5.0 Very early version, API may change

Check the Demo project

Please check out the demo project, you can see there how Library has been implemented in details.

Layout Inspiration

Layout inspiration has been taken from one of the Dribbble projects, unfortunately I cannot find now this project anymore, because of that I cannot annotate creator in here ๐Ÿ˜ฆ...

Assets


  • Great ๐Ÿ˜ tab bar icons from: Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY

  • Cool ๐Ÿ˜Ž profile icon from: Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY


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