func hiden() {
ADAlertController.hidenAlertVC(vc: self)
}
//MARK: - static和class都能指定该方法为类方法
static func hidenAlertVC(vc :ADAlertController) {
vc.view.removeFromSuperview()
vc.removeFromParent()
}
func hiden() {
ADAlertController.hidenAlertVC(vc: self)
}
//MARK: - static和class都能指定该方法为类方法
static func hidenAlertVC(vc :ADAlertController) {
vc.view.removeFromSuperview()
vc.removeFromParent()
}
本文标题:swift中的类方法和实例方法
本文链接:https://www.haomeiwen.com/subject/qymeultx.html
网友评论