Android程序員學IOS-UICheckBox

在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)
    }
    
}
相關文章
相關標籤/搜索