Inherits from NSObject
Declared in ADBMediaHeartbeat.h

Overview

Constant defining that the tracking session is resumed.

Instance Methods

allKeys

Returns all the keys as an NSArray instance

- (nonnull NSArray *)allKeys

Return Value

A new array containing the keys, or an empty array if this instance has no entries.

Discussion

Returns all the keys as an NSArray instance

Declared In

ADBMediaHeartbeat.h

setValue:forKey:

Sets the specified value for the key.

- (void)setValue:(nullable id)value forKey:(nonnull NSString *)key

Parameters

value

A non-null value for the key. Any existing value for the key is replaced by the new value.

key

The name of the key to be set.

Discussion

Sets the specified value for the key.

Declared In

ADBMediaHeartbeat.h

valueForKey:

Returns the value of the specified key.

- (nullable id)valueForKey:(nonnull NSString *)key

Parameters

key

The name of the key whose value is to be returned.

Return Value

The value for the specified key or nil if there is no corresponding value for the key

Discussion

Returns the value of the specified key.

The key must be a non empty value.

Declared In

ADBMediaHeartbeat.h