Created
May 23, 2017 14:29
-
-
Save ArchieR7/ac9197f8c9f03e822c68acb6bc95cd28 to your computer and use it in GitHub Desktop.
NS_ASSUME_NONNULL_BEGIN and NS_ASSUME_NONNULL_END
This file contains 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
NS_ASSUME_NONNULL_BEGIN | |
@interface DemoObject : NSObject | |
@property (nonatomic) NSString *name; | |
@property (nonatomic, nullable) NSString *address; | |
@property (nonatomic, readonly) NSString *phoneNumber; | |
@end | |
NS_ASSUME_NONNULL_END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment