Skip to content

Instantly share code, notes, and snippets.

@jen2
Created May 6, 2017 14:06
Show Gist options
  • Save jen2/c84decfd5d7491f9911f8242cd22865c to your computer and use it in GitHub Desktop.
Save jen2/c84decfd5d7491f9911f8242cd22865c to your computer and use it in GitHub Desktop.
Dinner.m file for "An Introduction to Categories in Objective-C."
// Dinner.m
#import "Dinner.h"
@implementation Dinner
- (void)prepareAppetizer
{
//Do something to prepare the appetizer.
}
- (void)cookMainDish {
//Do something to cook the main dish.
}
- (void)prepareDesert
{
//Do something to prepare the dessert.
}
- (void)setTable
{
//Do something to set the table.
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment