Skip to content

Instantly share code, notes, and snippets.

@volodg
Created May 7, 2013 11:31
Show Gist options
  • Save volodg/5531968 to your computer and use it in GitHub Desktop.
Save volodg/5531968 to your computer and use it in GitHub Desktop.
jClass_implementProperty example
@interface TestClass (ParseObject)
@property (nonatomic) NSObject *dynamicProperty;
@end
@implementation TestClass (ParseObject)
@dynamic dynamicProperty;
+ (void)load
{
jClass_implementProperty(self, @"dynamicProperty");
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment