AVQueuePlayer - does it preload next item?

I am creating an MP3 player with AVQueuePlayer.


Each item is added to the queue with code similar to the following:

[queuePlayer insertItem: [AVPlayerItem playerItemWithURL:[NSURL URLWithString: songUrl]] afterItem: nil];


I am wondering, will AVQueuePlayer preload the next item in the queue while the current item plays? I have seen mixed answers online. Where can I find this info in the Apple docs?

Replies

It just pre-loads the next item in the queue, not all the item.
Best way to verify this is to look out for network calls through Charles.