Skip to content

Instantly share code, notes, and snippets.

@DargonLee
Created November 15, 2023 02:58
Show Gist options
  • Save DargonLee/ccc07b3c315e74b0552fc311968afb32 to your computer and use it in GitHub Desktop.
Save DargonLee/ccc07b3c315e74b0552fc311968afb32 to your computer and use it in GitHub Desktop.
static const char kNameKey;
@implementation Person (Test)
- (void)setName:(NSString *)name
{
objc_setAssociatedObject(self, &kNameKey, name, OBJC_ASSOCIATION_COPY_NONATOMIC);
}
- (void)getName
{
return objc_getAssociatedObject(self, &kNameKey);
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment