/HQBlankView

空白页 数据为空时显示 有数据时消失

Primary LanguageSwift

HQBlankView

空白页 数据为空时显示 有数据时消失
可以用在任何View上,UIView,UITableView等。

使用方法:

   @IBAction func showBlankView(_ sender: UIButton) {
        
        HQBlankView.show(view, imgStr: "noTest", title: "咱无考试记录") {
            self.hideBlankView()
        }
    }
    
    fileprivate func hideBlankView() {
        
        HQBlankView.hide(fromView: self.view)
    }