Created
July 26, 2016 19:11
-
-
Save hramos/198b6662312af19b3df32dab6eb75c3d to your computer and use it in GitHub Desktop.
PFSubclassing Properties & Methods
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface Armor : PFObject<PFSubclassing> | |
@property (nonatomic, strong) NSString *displayName; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation Armor | |
@dynamic displayName; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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