0

我正在使用脚本新娘将我的 mac 应用程序连接到 iTunes。我尝试设置 shuffle 属性,但它不会改变。

iTunesApplication *itunes = [SBApplication applicationWithBundleIdentifier:@"com.apple.itunes"];
itunes.currentPlaylist.shuffle = YES;
NSLog([NSString stringWithFormat:@"%hhd", itunes.currentPlaylist.shuffle]);

NSLog 将始终打印 0,即使我在 iTunes 中手动更改随机播放模式。我在设置重复模式时遇到同样的问题

itunes.currentPlaylist.songRepeat = iTunesERptAll; // Has no effect

另一方面,我可以毫无问题地改变音量

itunes.soundVolume += 20;

这里发生了什么?难道是我必须通过 currentPlaylist 属性?

编辑:我已经更新了我的 iTunes.h 文件

sdef /Applications/iTunes.app | sdp -fh --basename iTunes

仍然没有运气。

4

1 回答 1

0

经过一番研究,我了解到我不是唯一一个遇到这个问题的人。这是iTunes中的一个错误。我还提交了错误报告,并鼓励您也这样做!

于 2013-09-14T13:07:56.647 回答