Skip to content

Instantly share code, notes, and snippets.

@hawaijar
Created October 13, 2021 09:52
Show Gist options
  • Save hawaijar/8f561bd40627ec93a9357ba7a0191482 to your computer and use it in GitHub Desktop.
Save hawaijar/8f561bd40627ec93a9357ba7a0191482 to your computer and use it in GitHub Desktop.
#import "Movie.h"
@implementation Movie
- (void)setName:(NSString *)movieName {
name = movieName;
}
- (void)setYear:(NSInteger)releaseYear {
year = releaseYear;
}
- (void)setRating:(NSInteger)movieRating {
rating = movieRating;
}
-(void)display {
NSLog(@"Movie Name: %@", name);
NSLog(@"Release Year: %li", (long)year);
NSLog(@"IMDB Rating: %li", rating);
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment