1
2
3
4
5
6
|
//清空所有子视图
func
clearViews() {
for
v
in
self
.view.subviews
as
[
UIView
] {
v.removeFromSuperview()
}
}
|
@H_403_69@