Skip to content

Instantly share code, notes, and snippets.

@hramos
Created July 26, 2016 19:11
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 hramos/198b6662312af19b3df32dab6eb75c3d to your computer and use it in GitHub Desktop.
Save hramos/198b6662312af19b3df32dab6eb75c3d to your computer and use it in GitHub Desktop.
PFSubclassing Properties & Methods
@interface Armor : PFObject<PFSubclassing>
@property (nonatomic, strong) NSString *displayName;
@end
@implementation Armor
@dynamic displayName;
@end
class Armor : PFObject, PFSubclassing {
@NSManaged var displayName: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment