Public Member Functions | |
(void) | - optionIsNotRecognized: |
Called if an option that is not recognized is found. | |
(void) | - optionIsMissingArgument: |
Called if an argument was not supplied for option that is required to have an argument. |
- (void) optionIsNotRecognized: | (NSString *) | option |
Called if an option that is not recognized is found.
If this is not implemented, then a default error message is printed. For long options, the option includes the two dashes. For short options, the option is just a single character.
option | The option that was not recognized. |
- (void) optionIsMissingArgument: | (NSString *) | option |
Called if an argument was not supplied for option that is required to have an argument.
If this is not implemented then a defeault error message is printed. For long options, the option includes the two dashes. For short options, the option is just a single character.
option | The option that had the missiong argument. |