I have an issue archiving a build under Xcode 10.1 because of protocol conformance
protocol ResetAbleTransform where Self: UIView {
func resetTransform()
}
class CardView, ResetAbleTransform {
func resetTransform()
}
All good except when I do something like this
let card = CardView()
card.isHidden = true -------> Here Xcode 10.2 builds, 10.1 complains
Both build on Swift 4.2. Did they add another version of Swift 4.2 in Xcode 9.2?
Anyone have an idea why? Or better yet, any way I can archive this with 10.1 or do I have to wait for 10.2 to be out of beta?