Just a quick question about terminology: in the example below (pulled from Apple documentation), would we say these methods are "defined," "declared," or something else?
protocol XYZPieChartViewDataSource
- (NSUInteger)numberOfSegments;
- (CGFloat)sizeOfSegmentAtIndex:(NSUInteger)segmentIndex;
@optional
- (NSString *)titleForSegmentAtIndex:(NSUInteger)segmentIndex;
@end
E.g., "You can see on line 2 that the numberOfSegments method is __. Therefore, classes conforming to this protocol must implement this method."