我正在尝试使用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];
}
这对我来说似乎不是一个好的解决方案,但也许你们其中一个人知道更好的方法。