I'm trying to find the last time a podcast was played using MPMusicPlayerController.

Using the built in iPod player on iOS, when a podcast is played and then the user changes to a different media item (could be a song, podcast, audiobook, etc.) the system remembers where the podcast was left and when it is replayed it will play it from that moment.

Is there any way to access this information? In my app, I have a user select a podcast but it always plays from the beginning and not from where it last left off.

Any ideas?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Unless you're interested in mucking around with private frameworks (which you shouldn't do if you have any plans of releasing this to the App Store), then no, there's no way of doing so. You can track when a podcast is played in your app itself manually (obviously), but you can't check when it was last played by another app, until Apple decides to add that functionality to the API. The MPMusicPlayerController class is pretty light on functionality right now, unfortunately.

link|improve this answer
feedback

There is no kosher way of accessing this information - what I do in my app is store my own value for this in a dictionary with the podcast's persistentID and reload it if the user accesses the same podcast again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.