Inherits from BCKCode11CodeCharacter : BCKCodeCharacter : NSObject
Declared in BCKCode11ContentCodeCharacter.h

Overview

Specialized class of BCKCode11CodeCharacter used for generating Code11 codes and representing content characters.

Instance Methods

characterValue

Return a content code character’s value. Only supports the 10 numeric characters and the dash character.

- (NSUInteger)characterValue

Return Value

The content code character’s value.

Declared In

BCKCode11ContentCodeCharacter.h

initWithCharacter:

Initialise a Code11 content code character using a character. Only supports the 10 numeric characters and the dash character (‘-’).

- (instancetype)initWithCharacter:(NSString *)character

Parameters

character

The character.

Return Value

The content code character for the character.

Declared In

BCKCode11ContentCodeCharacter.h

initWithCharacterValue:

Initialise a Code11 content code character using its character value. Only supports the 10 numeric characters and the dash character (‘-’).

- (instancetype)initWithCharacterValue:(NSUInteger)characterValue

Parameters

characterValue

The character value.

Return Value

The content code character for the character value.

Declared In

BCKCode11ContentCodeCharacter.h