1、新建文件,选择 Swift File 类型;
2、输入文件名称 一般 是 类名+Extension
3、完善 Extension 代码格式
import Foundation
import UIKit
extension UIViewController {
var window: UIWindow? {
guard let delegate = UIApplication.shared.delegate as? AppDelegate, let window = delegate.window else { return nil }
return window
}
}
4、完成
不需 import,可以直接在 .swift 文件调用扩展方法