Simple CheckBox for iOS
YSCheckBoxは簡単に使えるiOS用のswift製チェックボックスライブラリです。
ブラウザ標準のようなチェックボックスです。
pod 'YSCheckBox', :git => 'https://github.com/sekies/YSCheckBox.git'
と追加します。
import YSCheckBox
YSCheckBoxViewControllerDelegate
プロトコルに準拠します。
class ViewController: UIViewController,YSCheckBoxViewControllerDelegate {
YSCheckBoxViewController
インスタンスを生成します。生成時にチェックボックスのラベルを配列で指定します。
let checkBox = YSCheckBoxViewController(labels: ["Orange","GrapeFruits","Banana"])
checkBox.delegate = self
checkBox.font = UIFont.systemFont(ofSize: 18)
checkBox.labelColor = UIColor(red: 0, green: 122 / 255, blue: 1, alpha: 1)
checkBox.labelMargin = 0
checkBox.lineWidth = 1
checkBox.checkBoxSelectedFillSize = 1
checkBox.checkBoxMargin = 6
checkBox.checkBoxCorner = 7
checkBox.checkBoxStroke = .lightGray
checkBox.checkBoxCheckStroke = .white
checkBox.checkBoxSelectedFill = UIColor(red: 0, green: 122 / 255, blue: 1, alpha: 1)
checkBox.checkBoxBGFill = UIColor(red: 0.95, green: 0.95, blue: 0.95, alpha: 1)
addChild(checkBox)
checkBox.view.frame = container.bounds
container.addSubview(checkBox.view)
checkBox.didMove(toParent: self)
func didYSCeckBoxSelect(checks: [Bool]) {
print(checks)
}