Swizzling in Swift 4 no longer works.
Method 'initialize()' defines Objective-C class method 'initialize', which is not permitted by Swift
This is something I have found a solution to so wanted to leave the questions and answer for others.
Swizzling in Swift 4 no longer works.
Method 'initialize()' defines Objective-C class method 'initialize', which is not permitted by Swift
This is something I have found a solution to so wanted to leave the questions and answer for others.
initialize() is no longer exposed:
Method 'initialize()' defines Objective-C class method 'initialize', which is not permitted by Swift
So the way to do it now is to run your swizzle code via a public static method.
e.g
In the extension: (This extension is used in the kickstarted open source code: https://github.com/kickstarter/ios-oss/blob/master/Library/DataSource/UIView-Extensions.swift)
In the app delegate: (This method is used in the kickstarted open source code: https://github.com/kickstarter/ios-oss/blob/7c827770813e25cc7f79a28fa151cd713efe936f/Kickstarter-iOS/AppDelegate.swift#L33)
Another way is to use a singleton: