Inherits from BCKCodeCharacter : NSObject
Declared in BCKCodabarCodeCharacter.h

Overview

Specialized class of BCKCodeCharacter used for generating Codabar code characters.

Properties

isStartStop

Whether the code character is a start/stop character.

@property (nonatomic, readonly, getter=isStartStop) BOOL isStartStop

Declared In

BCKCodabarCodeCharacter.h

Class Methods

codeCharacterForCharacter:

Generates a code character to represent a Codabar content character.

+ (BCKCodabarCodeCharacter *)codeCharacterForCharacter:(NSString *)character

Parameters

character

The character to encode.

Return Value

The content code character for the character.

Declared In

BCKCodabarCodeCharacter.h

spacingCodeCharacter

Generates a Codabar spacing code character. Codabar spacing code characters are not treated as markers.

+ (BCKCodabarCodeCharacter *)spacingCodeCharacter

Return Value

The spacing marker code character.

Declared In

BCKCodabarCodeCharacter.h

startStopCodeCharacter:

Generates a Codabar start/stop code character. Supported start/stop characters are A, B, C, D, T, N, * and E. Codabar start/stop characters are not treated as markers.

+ (BCKCodabarCodeCharacter *)startStopCodeCharacter:(NSString *)character

Parameters

character

The start/stop character.

Return Value

The start/stop code character.

Declared In

BCKCodabarCodeCharacter.h