Swift Extension: same extension function in two Modules
Details Swift 3, Xcode 8.1 Swift 4, Xcode 9.1 Swift 5.1, Xcode 11.2.1 Problem frameworks SwiftFoundation and SwiftKit has the same names of the properties and functions decision Way1 Use different names of the properties and functions // SwiftFoundation public extension UIView { public class func swiftFoundationSomeClassMethod() { print(“someClassMethod from Swift Foundation”) } public var … Read more