SDLStationIDNumber Class Reference

Section Contents

Overview

Describes the hour, minute and second values used to set the media clock.

@since SDL 1.0

-initWithCountryCode:fccFacilityId:

Objective-C

- (nonnull instancetype)initWithCountryCode:
                            (nullable NSNumber<SDLInt> *)countryCode
                              fccFacilityId:(nullable NSNumber<SDLInt> *)id;

Swift

init(countryCode: (NSNumber & SDLInt)?, fccFacilityId id: (NSNumber & SDLInt)?)

Parameters

countryCode

Binary Representation of ITU Country Code. USA Code is 001

id

Binary representation of unique facility ID assigned by the FCC

Return Value

An SDLStationIDNumber object

countryCode

@abstract Binary Representation of ITU Country Code. USA Code is 001.

Optional, Integer, 0 - 999

Objective-C

@property (nonatomic, strong, nullable) NSNumber<SDLInt> *countryCode;

Swift

var countryCode: (NSNumber & SDLInt)? { get set }

fccFacilityId

@abstract Binary representation of unique facility ID assigned by the FCC FCC controlled for U.S. territory

Optional, Integer, 0 - 999

Objective-C

@property (nonatomic, strong, nullable) NSNumber<SDLInt> *fccFacilityId;

Swift

var fccFacilityId: (NSNumber & SDLInt)? { get set }