I am making a plug-in system for my application. It uses a framework with a class called vertCon
, which currently looks like this:
@interface vertCon : NSObject {
NSProgressIndicator *progressBar;
}
/* May not be accessible by child classes */
@property (nonatomic, retain) IBOutlet NSProgressIndicator *progressBar;
/* These two are used by child classes and may not be overridden */
- (void)updateProgessIndicator; // <-- epic spelling fail
- (void)epicFailWithError:(NSError *)error;
@end
(there is one object of a child class of vertCon
per progress bar)
How can I do this? Thanks.