Swift Combine properties inheritance throws 'Fatal error: Call of deleted method' on Xcode 11.4 beta 2 / iOS 13.4
问题 I'm trying to using Swift Combine to get the changed event of a property. I have this class that publish the isLogged property class CurrentUser: Account { static let me = CurrentUser() //Singleton @Published var isLogged: Bool = false } that inherit from this other class that publish the profileImageVersion property class Account { @Published var profileImageVersion: String? init(){ self.profileImageVersion = "" } } I'm trying to subscribe to the published inherit profileImageVersion