I have an AVQueuePlayer. This AVQueuePlayer has an item that I want it to play twice. However, I only want it to play that item twice. The only solution I have is to have my view controller subscribe to the AVPlayerItemDidPlayToEndTime notification and call a selector.
I ended up telling my app to add another item and add it to the queue player. This solution is easier than the one I previously posted.