swift中的类方法和实例方法
2021-07-02 本文已影响0人
大也
func hiden() {
ADAlertController.hidenAlertVC(vc: self)
}
//MARK: - static和class都能指定该方法为类方法
static func hidenAlertVC(vc :ADAlertController) {
vc.view.removeFromSuperview()
vc.removeFromParent()
}