Popularity
5.1
Declining
Activity
0.0
Stable
437
18
40

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

STLoadingGroup alternatives and similar libraries

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

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

Add another 'Activity Indicator' Library

README

STLoadingGroup

A Group of Loading Animations.

[STLoadingGroup](./resources/video_first_frame.png)

ScreenShot

[](./resources/loading.gif)

Usage

let loadingGroup = let loadingGroup = STLoadingGroup(side: side, style: style)
loadingGroup.show(inView: view)
loadingGroup.startLoading()
// stop:  loadnigGroup.stopLoading()

Custom

If you want to add your own loading:

​ 1.Comfirm STLoadingable and STLoadingConfigable protocol and implement required functions (there is a isLoading property left)

protocol STLoadingable {
    var isLoading: Bool { get }

    func startLoading()
    func stopLoading()
}

protocol STLoadingConfig {
    var animationDuration: TimeInterval { get }
    var lineWidth: CGFloat { get }
    var loadingTintColor: UIColor { get }
}

​ 2.Append your loading style to STLoadingStyle in STLoadingGroup.swift file

enum STLoadingStyle: String {
    case submit = "submit"
    case glasses = "glasses"
    case walk = "walk"
    case arch = "arch"
    case bouncyPreloader = "bouncyPreloader"
    case zhihu = "zhihu"
    case triangle = "triangle"
    case pacMan = "pac man"
}

​ 3.Add initializer for your loading: case .yourStyle: in STLoadingGroup

class STLoadingGroup {
    fileprivate let loadingView: STLoadingable

    init(side: CGFloat, style: STLoadingStyle) {

        let bounds = CGRect(origin: .zero, size: CGSize(width: side, height: side))
        switch style {
        case .submit:
            loadingView = STSubmitLoading(frame: bounds)
        case .glasses:
            loadingView = STGlassesLoading(frame: bounds)
        case .walk:
            loadingView = STWalkLoading(frame: bounds)
        case .arch:
            loadingView = STArchLoading(frame: bounds)
        case .bouncyPreloader:
            loadingView = STBouncyPreloaderLoading(frame: bounds)
        case .zhihu:
            loadingView = STZhiHuLoading(frame: bounds)
        case .triangle:
            loadingView = STTriangleLoading(frame: bounds)
        case .pacMan:
            loadingView = STPacManLoading(frame: bounds)
        // insert your code here
        }
    }
}

Thanks

.glasses

Designed by : bingbing. Dribbble link : click me !

.walk

Designed by : sandeep virk. Dribbble link : click me !

.arch

Designed by : John LaPrime. Dribbble link : click me !

.bouncyPreloader

Designed by : Joash Berkeley. Dribbble link : click me !

.submit

Loading animation in submit button.

.zhiHu

Designed by : ZhiHu daily.

.triangle

I found on web.

.pacMan

Designed by : Dave Whyte

MIT LICENSE


The MIT License (MIT)

Copyright (c) 2016 saitjr

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


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