解析。在Xcode中播放播放列表

时间:2012-08-03 11:15:31

标签: objective-c

我正在尝试使用AVPlayer实例在Xcode中编写一个简单的音频层。 要在.Pls文件中访问所需的URL,我当前的函数如下所示:

- (NSURL*)dirtyFirstTrack:(NSURL*)path
{
    NSString *data = [NSString stringWithContentsOfURL:path encoding:NSASCIIStringEncoding    error:nil];
    NSString *urlString = [[[[data componentsSeparatedByString:@"\n"]objectAtIndex:2] componentsSeparatedByString:@"="] objectAtIndex:1];
    return [NSURL URLWithString:urlString];
}

这对我来说似乎不是一个好的解决方案,但也许你们其中一个人知道更好的方法。

0 个答案:

没有答案