Skip to content

Instantly share code, notes, and snippets.

@berzniz
Last active December 10, 2015 01:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berzniz/4361749 to your computer and use it in GitHub Desktop.
Save berzniz/4361749 to your computer and use it in GitHub Desktop.
- (void)viewDidLoad
{
[super viewDidLoad];
[self observeModel]
[self render];
}
- (void)observeModel
{
// KVO is used to observe model changes
__weak id weakSelf = self;
[self.model addObserverForKeyPath:@"favorite" owner:self block:^(id observed, NSDictionary *change) {
[weakSelf render];
}];
}
- (void)favoriteButtonTapped:(id)sender
{
// The action only changes the data, not the UI
self.model.favorite = YES;
}
- (void)render
{
self.label.text = (self.model.favorite ? @"Favorite" : @"Not favorite");
}
// Un-observing code is left out to simplify the example
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment