I found this in some example code I downloaded
#import "PreferencesViewController.h"
@class MetronomeView;
@interface MetronomeViewController : UIViewController <PreferencesViewControllerDelegate> {
MetronomeView *metronomeView;
}
@property (nonatomic, assign) IBOutlet MetronomeView *metronomeView;
- (IBAction)showInfo;
@end
I tried to find information on PreferencesViewControllerDelegate, but didn't find much. What is this delegate?