代码之家  ›  专栏  ›  技术社区  ›  Steph Thirion

在OS X 10.5或更高版本中播放一个MP3文件(循环)

  •  0
  • Steph Thirion  · 技术社区  · 14 年前

    如何在OS X 10.5或更高版本上重复播放MP3文件?

    请用代码段答复。谢谢。

    1 回复  |  直到 14 年前
        1
  •  2
  •   sbooth    14 年前
    NSSound *sound = [[NSSound alloc] initWithContentsOfURL:url byReference:YES];
    [sound setLoops:YES];
    [sound play];
    // Later, when finished with sound
    [sound release];