1

I've been reading the iOS iPod library documentation, trying to figure out if there is a way to fecth or filter song and/or albums by the year of publication.

The MPMediaItem Class reference states that you can use:

NSString *const MPMediaItemPropertyPlayCount;
NSString *const MPMediaItemPropertySkipCount;
NSString *const MPMediaItemPropertyRating;
NSString *const MPMediaItemPropertyLastPlayedDate;
NSString *const MPMediaItemPropertyUserGroupin;

But it doesn't mention year of publication at all.

dequin
  • 906
  • 12
  • 19

1 Answers1

3

try MPMediaItemPropertyReleaseDate

roocell
  • 2,429
  • 25
  • 28