CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

WJClipsButton 1.0.1

WJClipsButton 1.0.1

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Jun 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by cbangchen.



Effect

Requirements

  • Swift 3.0
  • iOS 8.0
  • Xcode 8.0

Installation

WJClipsButton is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "WJClipsButton"

Usage

Code

Import

import WJClipsButton

Init && Setup

let wjButton = WJClipsButton.init(frame: CGRect.init(x: 0, y: 0, width: 300, height: 50))
wjButton.center = self.view.center
wjButton.cornerRadius = 10
wjButton.setButtonColor(.blue, status: .normal)
wjButton.setButtonColor(.yellow, status: .highlighted)
wjButton.setButtonColor(.red, status: .selected)
wjButton.setButtonTitle("I gonna start ... en ?", for: .normal)
wjButton.setButtonTitle("Touching ... friction.", for: .highlighted)
wjButton.setButtonTitle("Locked, locked.", for: .selected)
self.view.addSubview(wjButton)

Storyboard

Picture is truth

@IBInspectable Supported

Delegate

// button tap action
func didTapClipsButton()
    
// button unlock action
func clipsButtonDidUnlock()
    
// button lock action
func clipsButtonDidLock()

Author

jingzhilehuakai, [email protected]

License

WJClipsButton is available under the MIT license. See the LICENSE file for more info.