Shuffle Mode with iPod... help ... Objective C

323 Views Asked by At

I am trying to make it use the shuffle mode using

[self.musicPlayer setQueueWithQuery:shuffleMode];

But there is a warning saying makes pointer from integer without a cast. Now I know you can make a shuffle mode but I just cannot figure it out. Would I use it after setQueueWithQuery?

How would I use the shuffle mode with my app correctly? Any help is appreciated!

Thanks

1

There are 1 best solutions below

0
On

It's a property that's on the music player. And you set it with one of the constants that's already defined. e.g.:

[self.musicPlayer setShuffleMode:MPMusicShuffleModeSongs];