Loading issues with AVPlayerItem from local URL
问题 I am working on a custom video player using AVPlayer. I load videos stored on the local file system in the Cache folder (NSCache). I initialize the player like this: self.playerItem = [[AVPlayerItem alloc] initWithURL:self.localURL]; [self.playerItem addObserver:self forKeyPath:NSStringFromSelector(@selector(status)) options:NSKeyValueObservingOptionInitial context:nil]; self.avPlayer = [[AVPlayer alloc]initWithPlayerItem:self.playerItem]; [self.avPlayer addObserver:self forKeyPath