Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kenmhaggerty/eb013fde749156d8780f449715f43079 to your computer and use it in GitHub Desktop.
Save kenmhaggerty/eb013fde749156d8780f449715f43079 to your computer and use it in GitHub Desktop.
- (void)setName:(NSString *)name {
if ((!name && !_name) || [name isEqualToString:_name]) {
return;
}
NSMutableDictionary *userInfo = [NSMutableDictionary dictionary];
if (name) {
userInfo[@"newValue"] = name;
}
_name = name
[[NSNotificationCenter defaultCenter] postNotificationName:@"kMyObjectNameDidChangeNotification" object:self userInfo:userInfo];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment