0

有没有办法向 iTunes 发送通知,所以它会告诉我当前的歌曲。我知道它会在歌曲更改时发送通知,但我想在我的应用程序打开时获取当前歌曲。我试图避免使用脚本桥。

4

2 回答 2

2

不幸的是,您不能通过通知来做到这一点,您唯一的选择是脚本桥或其他与 Apple 事件相关的方法。

于 2012-04-26T01:53:27.860 回答
1

您可以使用NSAppleScript来运行 AppleScript。

示例:获取当前曲目的标题和艺术家

NSAppleScript* theScript = [[NSAppleScript alloc] initWithSource:
                       [NSString stringWithFormat:
                            @"tell application \"iTunes\" to if running then\n"
                            @"    try\n"
                            @"        tell current track to return name & return & artist\n"
                            @"    end try\n"
                            @"    return \"no track\"\n"
                            @"end if\n"
                            @"return \"iTunes is not open\"\n"]];
NSDictionary *errorDict;
NSAppleEventDescriptor *resultDescriptor = [theScript executeAndReturnError:&errorDict];
NSString *title_artist = [resultDescriptor stringValue];
// do something with title_artist

示例:使用“资源文件夹”中的 AppleScript 文件

NSString *scriptPath = [[NSBundle mainBundle] pathForResource:@"theScriptName" ofType:@"scpt"];
NSAppleScript *theScript = [[NSAppleScript alloc] initWithContentsOfURL: [NSURL fileURLWithPath:scriptPath] error: nil];

另一种解决方案:您可以使用NSTask通过 osascript 运行 AppleScript

于 2012-04-26T06:11:42.197 回答