I have an extension:
public extension UIWindow {
override public func topMostController()->UIViewController? { ... }
}
but for my
Extensions can add new functionality to a type, but they cannot override existing functionality.
Extensions add new functionality to an existing class, structure, enumeration, or protocol type. This includes the ability to extend types for which you do not have access to the original source code (known as retroactive modeling).
Extensions in Swift can:
Apple Developer Guide
You are trying to do is similar to what done by this code:
class MyClass: UIWindow {
func myFunc() {}
}
extension MyClass {
override func myFunc() {}
}
NOTE: If you want to override topMostController() then make subclass of UIWindow