加减控件IRPlusLessSwift

Demo下载

效果展示

要实现的效果

使用代码

1
2
3
4
5
6
7
8
9
10
11
import UIKit
class ViewController: UIViewController {
/// 定义属性
var plusLessView : IRPlusLessView?
override func viewDidLoad() {
super.viewDidLoad()
plusLessView = IRPlusLessView(frame: CGRect(x: 100,y: 100,width: 200,height: 50))
plusLessView!.maxNum = 3
plusLessView!.styleColor = UIColor.greenColor()
self.view.addSubview(plusLessView!)
}

具体代码请下载Demo