MPMovieErrorLogEvent Class Reference
| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/MediaPlayer.framework |
| Availability | Available in iOS 4.3 and later. |
| Declared in | MPMoviePlayerController.h |
Overview
A movie error log event represents a single piece of information for a movie error log. For a description of movie error logs, see MPMovieErrorLog Class Reference.
All movie error log event properties are read-only.
Tasks
Movie Error Log Event Properties
-
dateproperty -
URIproperty -
serverAddressproperty -
playbackSessionIDproperty -
errorStatusCodeproperty -
errorDomainproperty -
errorCommentproperty
Properties
date
The date and time when the error occurred.
@property (nonatomic, readonly) NSDate *date;
Availability
- Available in iOS 4.3 and later.
Declared In
MPMoviePlayerController.herrorComment
A description of the error.
@property (nonatomic, readonly) NSString *errorComment;
Availability
- Available in iOS 4.3 and later.
Declared In
MPMoviePlayerController.herrorDomain
The network domain of the error.
@property (nonatomic, readonly) NSString *errorDomain;
Availability
- Available in iOS 4.3 and later.
Declared In
MPMoviePlayerController.herrorStatusCode
A unique error code identifier.
@property (nonatomic, readonly) NSInteger errorStatusCode;
Discussion
If the error is unknown, the value of this property is negative.
Availability
- Available in iOS 4.3 and later.
Declared In
MPMoviePlayerController.hplaybackSessionID
A GUID (globally unique identifier) for the playback session.
@property (nonatomic, readonly) NSString *playbackSessionID;
Discussion
The GUID is used in HTTP requests.
Availability
- Available in iOS 4.3 and later.
Declared In
MPMoviePlayerController.hserverAddress
The IP address of the web server that was the source of the error.
@property (nonatomic, readonly) NSString *serverAddress;
Availability
- Available in iOS 4.3 and later.
Declared In
MPMoviePlayerController.hURI
The URI of the item being played when the error occurred.
@property (nonatomic, readonly) NSString *URI;
Availability
- Available in iOS 4.3 and later.
Declared In
MPMoviePlayerController.h© 2010 Apple Inc. All Rights Reserved. (Last updated: 2010-12-09)