I'm developing a Mac App and I need to check if Itunes (11.0) is shuffling my music so, to check that, I'm using iTunes.h
and the following code:
if([iTunes.currentPlaylist shuffle]){
NSLog(@"yes");
}else{
NSLog(@"no");
}
Even though I have my iTunes shuffling, it always outputs "no".
Any ideas why is this happening or am I checking it the wrong way?