Slide 32
Slide 32 text
@interface MonkeyDB (Tricycles)
/**
Looks up whether the given monkey owns a tricycle.
If the monkey owns one, returns the tricycle.
If not, returns nil.
If an error occurs, the error pointer will be populated.
*/
- (Tricycle *)tricycleForMonkey:(Monkey *)monkey
error:(NSError **)error;
@end