I am currently trying to categorise a users music collection and the ability to get the users most played songs/artists would greatly improve the user experience in the app. Is it possible to get the play count? and how would I go about doing it
|
MPMediaItem has the method:
This method return the media property key that you want the corresponding value of. And one of the possibles values is MPMediaItemPropertyPlayCount:
|
|||
|
|
|
(+1 to Jonathan Naguin.) Just a couple of additions: Should you want to find the user's most played track(s), you could:
Option (1) is probably best, especially if you're looking to categorize the music collection (I guess (2) could be worse performance-wise too). There's also a similar answer on SO to help answer your question. Check out the Apple docs for more info on MPMediaQueries. |
|||
|
|
|
If you use Core Data they have a lot of methods for you to use. Check this out: http://developer.apple.com/library/mac/#documentation/cocoa/Conceptual/CoreData/cdProgrammingGuide.html |
||||
|
|