-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove ViewModelObserver.isReadyForUpdates
Simplifies both the public API and the implementation of @viewmodel.
- Loading branch information
Showing
2 changed files
with
8 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,6 @@ | ||
import Combine | ||
|
||
public protocol ViewModelObserver: AnyObject { | ||
var isReadyForUpdates: Bool { get } | ||
var subscriptions: Set<AnyCancellable> { get set } | ||
func updateView() | ||
} | ||
|
||
extension ViewModelObserver { | ||
public var isReadyForUpdates: Bool { | ||
true | ||
} | ||
} | ||
|
||
#if canImport(UIKit) | ||
import UIKit | ||
|
||
extension UIViewController { | ||
@objc open var isReadyForUpdates: Bool { | ||
isViewLoaded | ||
} | ||
} | ||
#endif |