Skip to content

Instantly share code, notes, and snippets.

@hawaijar
Created October 13, 2021 08:32
Show Gist options
  • Save hawaijar/8e68cdfe8c3a1c0a5f802328eca56fea to your computer and use it in GitHub Desktop.
Save hawaijar/8e68cdfe8c3a1c0a5f802328eca56fea to your computer and use it in GitHub Desktop.
NS_ASSUME_NONNULL_BEGIN
@interface Movie : NSObject {
NSString* name;
NSInteger year;
NSInteger rating;
}
- (void)setName:(NSString*) movieName;
- (void)setYear:(NSInteger) releaseYear;
- (void)setRating:(NSInteger) movieRating;
-(void)display;
@end
NS_ASSUME_NONNULL_END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment