Giter Site home page Giter Site logo

Comments (3)

markst avatar markst commented on May 28, 2024

I actually use SimpleLoadingView directly. Here's an example of some of my code:

class LoadingButton: UIButton {

    let loadingView = SimpleLoadingView(withFrame:CGRectZero, animationDuration:0.6, animatingShapeSize:CGSizeMake(10, 10))

    func showLoadingView() -> Void {

        self.loadingView.translatesAutoresizingMaskIntoConstraints = false
        self.addSubview(self.loadingView)
        self.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat(
            "H:|-(20)-[loadingView]-(20)-|",
            options: NSLayoutFormatOptions(rawValue: 0),
            metrics: nil,
            views: ["loadingView": self.loadingView]
            ))
        self.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat(
            "V:|-(10)-[loadingView]-(10)-|",
            options: NSLayoutFormatOptions(rawValue: 0),
            metrics: nil,
            views: ["loadingView": self.loadingView]
            ))

        self.loadingView.startAnimation()

        UIView.transitionFromView(self.titleLabel!, toView: loadingView, duration:0.15, options:.TransitionCrossDissolve) { (_) in
            self.titleLabel?.hidden = true
            self.imageView?.hidden = true
        }

    }

    func hideLoadingView() -> Void {

        UIView.transitionFromView(self.loadingView, toView:self.titleLabel!, duration:0.15, options:.TransitionCrossDissolve) { (_) in
            self.loadingView.removeFromSuperview()
            self.titleLabel?.hidden = false
            self.imageView?.hidden = false
        }
    }

}

from simpleloadingbutton.

markst avatar markst commented on May 28, 2024

this is a subclass of UIButton which makes it much easier to setup in interface builder.

from simpleloadingbutton.

mruvim avatar mruvim commented on May 28, 2024

@markst i was under impression that subclassing UIButton is not a good idea. Added ability to set the tint of the circle views in 0.1.4 release

from simpleloadingbutton.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.