Created
October 23, 2015 06:58
-
-
Save cosbor11/28111b28ccce8165d1bb to your computer and use it in GitHub Desktop.
Objective C Person header
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
| #import <Foundation/Foundation.h> | |
| #import "SWGObject.h" | |
| NS_ASSUME_NONNULL_BEGIN | |
| @interface Person : SWGObject | |
| @property (nullable, nonatomic, retain) NSString *firstName; | |
| @property (nullable, nonatomic, retain) NSString *lastName; | |
| @property (nullable, nonatomic, retain) NSNumber *personId; | |
| // Insert code here to declare functionality of your managed object subclass | |
| @end | |
| NS_ASSUME_NONNULL_END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment