BMPScteMetadataEntry
Objective-C
@interface BMPScteMetadataEntry : NSObject <BMPMetadataEntry>
Swift
class ScteMetadataEntry : NSObject, MetadataEntry
Describes default properties of the custom SCTE35 tag from the playlist.
-
Key of the SCTE35 attribute.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSString *_Nonnull key;
Swift
var key: String { get }
-
Value of the SCTE35 attribute.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) NSString *value;
Swift
var value: String? { get }
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithKey:(NSString *)key value:(nullable NSString *)value NS_DESIGNATED_INITIALIZER;
Swift
init(key: String, value: String?)