加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

【纯代码】Swift - 自定义底部弹窗基类(可根据需要自行扩展内容

发布时间:2020-12-14 04:58:22 所属栏目:百科 来源:网络整理
导读:// 弹窗视图 class PopView : UIView { var selectButtonCallBack:((_ title:String) - Void)? var contenView:UIView ? { didSet{ setUpContent() } } override init(frame: CGRect) { super.init(frame: frame) } required init ? (coder aDecoder: NSCode
//弹窗视图
class PopView : UIView {
    var selectButtonCallBack:((_ title:String)-> Void)?
    
    var contenView:UIView?
    {
        didSet{
            setUpContent()
        }
    }
    
    override init(frame: CGRect) {
        super.init(frame: frame)
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    func setUpContent(){
        
        if self.contenView != nil {
            self.contenView?.frame.origin.y = UIScreen.main.bounds.size.height - 191
            self.addSubview(self.contenView!)
        }
        self.backgroundColor = newColorWithAlpha(0,0,0.4)
        self.isUserInteractionEnabled = true
        self.addGestureRecognizer(UITapGestureRecognizer.init(target: self,action: #selector(dismissView)))
        //以下为添加内容,可根据需要删除以下部分
        sudokuConstraints()
    }
    
    @objc func dismissView(){
        UIView.animate(withDuration: 0.3,animations: {
            self.alpha = 0
        }) { (true) in
            self.removeFromSuperview()
            self.contenView?.removeFromSuperview()
        }
    }
    
    func showInWindow(){
        UIApplication.shared.keyWindow?.addSubview(self)
        UIView.animate(withDuration: 0.3,animations: {
            self.alpha = 1.0
            self.contenView?.frame.origin.y = UIScreen.main.bounds.size.height - 191
        },completion: nil)
    }
    
    //MARK: - 布局
    func sudokuConstraints() -> Void {
        let titleArr = ["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""]
        
        for (index,value) in titleArr.enumerated() {
            let button = createButton(title: value)
            let margin = (UIScreen.main.bounds.size.width - 8 * 39)/(8 + 1)
            let col  = CGFloat(index % Int(8))
            let row  = CGFloat(index / Int(8))
            let viewX = margin +  col * (39 + margin)
            let viewY = 7 + row * (39 + 7)
            
            button.frame = CGRect(x: viewX,y: viewY,width: 39,height: 39)
            self.contenView!.addSubview(button)
        }
    }
    
    func createButton(title:String) -> UIButton {
        let button = UIButton()
        button.setTitle(title,for: .normal)
        button.setTitleColor(newColor(0,0),for: .normal)
        button.backgroundColor = .white
        button.layer.masksToBounds = true
        button.layer.cornerRadius = 5.0
        
        button.addTarget(self,action: #selector(buttonClickAction(button:)),for: .touchUpInside)
        return button
    }
    
    @objc func buttonClickAction(button:UIButton) -> Void {
        if self.selectButtonCallBack != nil {
            self.selectButtonCallBack!(button.titleLabel?.text ?? "")
        }
    }
}

使用:

let popview = PopView.init(frame:UIScreen.main.bounds)
        popview.contenView = UIView.init(frame: CGRect.init(x: 0,y: UIScreen.main.bounds.size.height - 191,width: UIScreen.main.bounds.size.width,height:191 ))
popview.contenView?.backgroundColor = newColor(206,206,206)
popview.selectButtonCallBack = {
    (title:String) -> Void in
    self.righAbbreviationButton.setTitle(title,for: .normal)
    popview.dismissView()
}
popview.showInWindow()

效果图:

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读