Skip to content

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 the INotifyPropertyChanged interface by notifying any subscribers upon property changes via the Set 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 πŸ“–

Clone this wiki locally