Created
November 23, 2021 08:33
-
-
Save brownsoo/a3b2a1db118f8ec44a2731e83c840280 to your computer and use it in GitHub Desktop.
ViewModel for KVO example
This file contains hidden or 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
class ExpenseViewModel: NSObject { | |
@objc dynamic var price = -1.0 | |
@objc dynamic var title = "" | |
@objc dynamic var text: String? = nil | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment