//
|
// UIViewControllerExtension.swift
|
// OKProject
|
//
|
// Created by alvin_y on 2020/5/20.
|
// Copyright © 2020 yangwang. All rights reserved.
|
//
|
|
import Foundation
|
|
extension UIViewController {
|
func removeChildViewController(vc: UIViewController){
|
vc.willMove(toParent: nil)
|
vc.removeFromParent()
|
vc.view.removeFromSuperview()
|
}
|
}
|