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];
}
これは私には良い解決策ではないようですが、おそらくあなたの一人がそれを行うためのより良い方法を知っています。