-
-
Notifications
You must be signed in to change notification settings - Fork 4
ViewModels or ObservableObjects
Marc Rousavy edited this page Jun 28, 2018
·
8 revisions
In Jellyfish you differentiate between an observable object and a view model:
-
ObservableObject
: An object that implements theINotifyPropertyChanged
interface by notifying any subscribers upon property changes via theSet
method -
ViewModel
: The actual ViewModel in the MVVM Pattern. A ViewModel also inherits from ObservableObject, but provides additional functionality specifically for ViewModels
See also: ViewModel π, Observable Object π