iOS/swift 单选框和复选框

1.********复选框*******

/**
 复选框
 使用:       let single = LYBmutipleSelectView.init(frame: CGRect.init(x: 0, y: 0, width: WIDTH, height: 550))
 single.titleArr=["one","two","three"]
 self.view.addSubview(single)
 */
import UIKit

class LYBmutipleSelectView: UIView {

    var selectindexs:[Int]=[]//选中的

    //标题数组
    var titleArr:[String]=[""]{
        didSet{
            for i in  0..<titleArr.count{
                //组装按钮和label
                let   singleselectview:UIView=UIView.init(frame: CGRect.init(x: i*100, y:0, width: 100, height: 50))
                
                let rightLbel:UILabel=UILabel.init(frame: CGRect.init(x: 50, y: 0, width: 50, height: 50))
                rightLbel.text=titleArr[i]
                  singleselectview.addSubview(rightLbel)
                
                let leftBtn:UIButton=UIButton.init(frame: CGRect.init(x: 5, y: 5, width: 40, height: 40))
                leftBtn.tag=130+i;
                leftBtn.setImage(UIImage.init(named: "other"), for: UIControl.State.normal)
                leftBtn.addTarget(self, action: #selector(leftBtnClcik), for: UIControl.Event.touchUpInside)
                singleselectview.addSubview(leftBtn)
              
                addSubview(singleselectview)
            }
        }
    }
    
    override init(frame: CGRect) {
        super.init(frame: frame)
        initViews()
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    func initViews(){
        let sureBtn:UIButton=UIButton.init(frame: CGRect.init(x: WIDTH-100, y: 30, width: 100, height: 50))
        sureBtn.setTitle("确认", for: UIControl.State.normal)
        sureBtn.setTitleColor(UIColor.black, for: UIControl.State.normal)
        sureBtn.addTarget(self, action: #selector(sureBtnClcik), for: UIControl.Event.touchUpInside)
        addSubview(sureBtn)
    }
    
    //确认按钮,根据选中的按钮索引做相应的操作
    @objc func sureBtnClcik(){
        print("\(selectindexs)")
    }
    
    //点击按钮选中或取消
    @objc func leftBtnClcik(sender:UIButton){
        sender.isSelected = !sender.isSelected
        let btnTag:Int=sender.tag-130
        if sender.isSelected{//选中
            selectindexs.append(btnTag)//吧按钮的索引存储起来
            sender.setImage(UIImage.init(named: "center"), for: UIControl.State.normal)
        }else {
            //删除数组中的元素,采用过滤的方法,swift中没有现成的删除方法
            let fiflter:[Int]=selectindexs.filter {
                $0 != btnTag
            }
            selectindexs = fiflter
            sender.setImage(UIImage.init(named: "other"), for: UIControl.State.normal)
        }

    }
    
    
}

2。********* 单选框*******

 /**
  单选框
  使用:
  let single = LYBSingleselectview.init(frame: CGRect.init(x: 0, y: 0, width: WIDTH, height: 550))
   single.titleArr=["one","two","three"]
   self.view.addSubview(single)
  */

import UIKit

class LYBSingleselectview: UIView {
    var selectindex:Int=0//选中的
    var lastbtn:UIButton=UIButton.init()//保存上一个按钮
    var selectblock:(Int)->()={(Int)->() in  }
    //标题数组
    var titleArr:[String]=[""]{
        didSet{
            for i in  0..<titleArr.count{
                //组装按钮和label
                let   singleselectview:UIView=UIView.init(frame: CGRect.init(x: i*100, y: 0, width: 100, height: 50))
                
                let rightLbel:UILabel=UILabel.init(frame: CGRect.init(x: 50, y: 0, width: 50, height: 50))
                rightLbel.text=titleArr[i]
                singleselectview.addSubview(rightLbel)
                
                let leftBtn:UIButton=UIButton.init(frame: CGRect.init(x: 5, y: 5, width: 40, height: 40))
                leftBtn.tag=130+i
                leftBtn.setImage(UIImage.init(named: "other"), for: UIControl.State.normal)
                leftBtn.addTarget(self, action: #selector(leftBtnClcik(sender:)), for: UIControl.Event.touchUpInside)
                singleselectview.addSubview(leftBtn)
                
                addSubview(singleselectview)
            }
        }
    }
    
    override init(frame: CGRect) {
        super.init(frame: frame)
        initViews()
        self.selectblock = {
            (index) in
            print("\(index)")
        }
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    func initViews(){
        let sureBtn:UIButton=UIButton.init(frame: CGRect.init(x: WIDTH-100, y: 30, width: 100, height: 50))
        sureBtn.setTitle("确认", for: UIControl.State.normal)
        sureBtn.setTitleColor(UIColor.black, for: UIControl.State.normal)
        sureBtn.addTarget(self, action: #selector(sureBtnClcik), for: UIControl.Event.touchUpInside)
        addSubview(sureBtn)
    }
    
    //确认按钮,根据选中的按钮索引做相应的操作
    @objc func sureBtnClcik(){
        print("\(selectindex)")
    }
    
    //点击按钮选中或取消
    @objc func leftBtnClcik(sender:UIButton){
        print("左边按钮")
        let btnTag:Int=sender.tag-130
       sender.isSelected=true
        lastbtn.isSelected=false
        lastbtn.setImage(UIImage.init(named: "other"), for: UIControl.State.selected)
        sender.setImage(UIImage.init(named: "center"), for: UIControl.State.selected)
         lastbtn=sender
        selectindex = btnTag
        self.selectblock(selectindex)
    }
    
    
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值