在IOS中是沒有UICheckBox這個控件的,實際上IOS中經常使用的是switch[開關],但有的時候咱們仍是須要用到UICheckBox這個控件,接下來咱們看看如何自定義一個UICheckBox。
定義一個UICheckBox,咱們用什麼基礎控件來實現呢,首先IOS中全部的View都是有isSelect
屬性的。因此,咱們須要作的,就是改變isSelect
的值的時候,修改左邊圖片的顯示。UIButton是能夠設置選中時和未選中時的圖片的,因此咱們只須要在自定義控件中設置這兩種狀態時的圖片,而且在點擊事件中設置isSelect = !isSelect
就能夠了。swift
// UICheckBox.swift import UIKit class UICheckBox: UIButton { var imagePadding : CGFloat = 5.0 override init(frame: CGRect) { super.init(frame: frame) self.addTarget(self, action: #selector(buttonPressed), for: .touchUpInside) self.setImage(UIImage(named: "check"), for: .normal) self.setImage(UIImage(named: "uncheck"), for: .selected) } required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } @objc func buttonPressed(button: UIButton) { button.isSelected = !button.isSelected } override func imageRect(forContentRect contentRect: CGRect) -> CGRect { return CGRect(x: 0, y: 0, width: self.bounds.height, height: self.bounds.height) } override func titleRect(forContentRect contentRect: CGRect) -> CGRect { return CGRect(x: self.bounds.height + imagePadding, y: 0, width: self.bounds.width - self.bounds.height - imagePadding, height: self.bounds.height) } }