Skip to content

Instantly share code, notes, and snippets.

@ArchieR7
Created May 23, 2017 14:29
Show Gist options
  • Save ArchieR7/ac9197f8c9f03e822c68acb6bc95cd28 to your computer and use it in GitHub Desktop.
Save ArchieR7/ac9197f8c9f03e822c68acb6bc95cd28 to your computer and use it in GitHub Desktop.
NS_ASSUME_NONNULL_BEGIN and NS_ASSUME_NONNULL_END
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