在IOS中是没有UICheckBox这个控件的,实际上IOS中常用的是switch[开关],但有的时候我们还是需要用到UICheckBox这个控件,接下来我们看看如何自定义一个UICheckBox。
思路
定义一个UICheckBox,我们用什么基础控件来实现呢,首先IOS中所有的View都是有isSelect
属性的。所以,我们需要做的,就是改变isSelect
的值的时候,修改左边图片的显示。UIButton是可以设置选中时和未选中时的图片的,所以我们只需要在自定义控件中设置这两种状态时的图片,并且在点击事件中设置isSelect = !isSelect
就可以了。
实现
// 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)
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。